import parseArgs from "minimist"; export type Args = { _: any; storagetable?: string; storagebucket?: string; storageprefix?: string; sourcebucket?: string; sourcequeue?: string; }; export const args = parseArgs(process.argv.slice(2)) as Args;