| 41 | type Bucket = 'day' | 'hour'; |
| 42 | |
| 43 | interface Args { |
| 44 | since: Date; |
| 45 | bucket: Bucket; |
| 46 | project: string | null; |
| 47 | limit: number; |
| 48 | batch: number; |
| 49 | delete: boolean; |
| 50 | } |
| 51 | |
| 52 | function getArg(name: string): string | undefined { |
| 53 | const prefix = `--${name}=`; |
nothing calls this directly
no outgoing calls
no test coverage detected