API.uploads property
Signature:
readonly uploads: Readonly<{
create: (data: {
file: string | Blob | File;
metafields?: APIv1.MetafieldData[];
team?: string;
}, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.UploadResource>>;
read: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.UploadResource>>;
}>;