kura-s3
Version:
The FileSystem API abstraction library, AWS S3 Plugin
11 lines • 450 B
TypeScript
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;
}
//# sourceMappingURL=S3FileSystemOption.d.ts.map