Interface SanityFileUploadStub

Represents an in-progress file upload (has upload property but no asset yet)

interface SanityFileUploadStub {
    _type?: string;
    _upload?: unknown;
    asset?: SanityFileAsset;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

_type?: string
_upload?: unknown