@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
11 lines (10 loc) • 413 B
TypeScript
import { ReadableUploadSource } from "../../base-types";
import { IUploadSource } from "../../contracts/upload/upload-source";
export declare class LocalUploadSource implements IUploadSource {
private _uri;
constructor(path: string, name?: string);
name: string;
getReadableSourceAsync(): Promise<ReadableUploadSource>;
private isStandardBrowserEnv;
private ensureNonBrowserEnvironment;
}