export type Args = string[]; export type RawOptions = { project: string | null; install: boolean | null; dev: boolean; }; type NonNullableRawOptions = { [Prop in keyof RawOptions]: NonNullable; }; export type Options = NonNullableRawOptions;