UNPKG

kura-s3

Version:

The FileSystem API abstraction library, AWS S3 Plugin

12 lines (10 loc) 391 B
import { FileSystemOptions } from "kura/lib/FileSystemOptions"; import { XHROptions } from "kura"; export interface S3FileSystemOptions extends FileSystemOptions { expires?: number; getObjectUsingListObject?: boolean; methodOfDoGetContent?: "xhr" | "getObject"; methodOfDoPutContent?: "xhr" | "upload" | "uploadPart" | "putObject"; noCache?: boolean; xhrOptions?: XHROptions; }