export type Config = { BUCKET: string; ACCESS_KEY_ID: string; ACCESS_KEY_SECRET: string; SERVER: string; FROM_DIR: string; TO_DIR: string; IGNORE: RegExp; }; export type Options = { config?: string | Config; cache?: boolean; };