diff --git a/src/interfaces/parser.ts b/src/interfaces/parser.ts index 10317e06..1a56bac6 100644 --- a/src/interfaces/parser.ts +++ b/src/interfaces/parser.ts @@ -201,4 +201,5 @@ export type CompletableOptionFlag = OptionFlag & { export type CompletableFlag = BooleanFlag | CompletableOptionFlag -export type FlagInput = { [P in keyof T]: CompletableFlag } +// eslint-disable-next-line @typescript-eslint/ban-types +export type FlagInput = { [P in keyof T]: CompletableFlag }