weareinreach / InReach

Detected usage of void type outside of generic or return types JS-0333
Anti-pattern
Minor
9 days agoa year old
void is not valid as a constituent in a union type
119export type ListrJob = ListrTaskObj<Context, ListrDefaultRenderer>
120
121export type MigrationJob = ListrJob & { def: JobDef }
122export type ListrTask = (ctx: Context, task: PassedTask) => Promisable<void | Listr<Context>>