export interface UploaderConfig { bucket: string, keyPrefix: string, } export interface Uploader { uploadDir(distDir: string): Promise; uploadFile(filepath: string): Promise; }