UNPKG

@sitecore/sc-contenthub-webclient-sdk

Version:

Sitecore Content Hub WebClient SDK.

11 lines (10 loc) 397 B
import { ReadableUploadSource } from "../../base-types"; import { IUploadSource } from "../../contracts/upload/upload-source"; export declare class HttpUploadSource implements IUploadSource { private uri; private static HTTP_SCHEMA; private static HTTPS_SCHEMA; constructor(uri: URI, name?: string); name: string; getReadableSourceAsync(): Promise<ReadableUploadSource>; }