@neo-one/node-data-backup
Version:
NEO•ONE node data path backup and restore.
11 lines (10 loc) • 314 B
TypeScript
import { GCloudProviderOptions, MegaProviderOptions } from './provider';
export interface Options {
readonly gcloud?: GCloudProviderOptions;
readonly mega?: MegaProviderOptions;
}
export interface Environment {
readonly dataPath: string;
readonly tmpPath: string;
readonly readyPath: string;
}