cloud-agnostic-storage
Version:
A package which enables cloud agnostic storage for a NodeJS project.
6 lines (5 loc) • 372 B
TypeScript
declare function initializeCloudStorage(CLOUD_PROVIDER_NAME?: string): void;
declare function downloadFileAsync(keyName: string): Promise<string>;
declare function uploadFileAsync(keyName: string): Promise<string>;
declare function deleteFileAsync(keyName: string): Promise<string>;
export { initializeCloudStorage, downloadFileAsync, uploadFileAsync, deleteFileAsync, };