localbackup
Version:
Utility to make local backups easily and without the hassle.
10 lines • 509 B
TypeScript
import { IStorageProvider } from './IStorageProvider';
export declare class LocalStorageProvider implements IStorageProvider {
static readonly providerName: string;
isAvailable(): Promise<boolean>;
uploadFile(localFilePath: string, destinationFilePath: string): Promise<void>;
deleteFile(fileFullPath: string): Promise<void>;
listFiles(directoryPath: string): Promise<string[]>;
}
export declare const localStorageProvider: LocalStorageProvider;
//# sourceMappingURL=localProvider.d.ts.map