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