Skip to content

Commit 9b0340a

Browse files
committed
chore: format code to prettier 3.4.2
1 parent ccded68 commit 9b0340a

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Diff for: src/node/cli.ts

+12-12
Original file line numberDiff line numberDiff line change
@@ -118,18 +118,18 @@ interface Option<T> {
118118
type OptionType<T> = T extends boolean
119119
? "boolean"
120120
: T extends OptionalString
121-
? typeof OptionalString
122-
: T extends LogLevel
123-
? typeof LogLevel
124-
: T extends AuthType
125-
? typeof AuthType
126-
: T extends number
127-
? "number"
128-
: T extends string
129-
? "string"
130-
: T extends string[]
131-
? "string[]"
132-
: "unknown"
121+
? typeof OptionalString
122+
: T extends LogLevel
123+
? typeof LogLevel
124+
: T extends AuthType
125+
? typeof AuthType
126+
: T extends number
127+
? "number"
128+
: T extends string
129+
? "string"
130+
: T extends string[]
131+
? "string[]"
132+
: "unknown"
133133

134134
export type Options<T> = {
135135
[P in keyof T]: Option<OptionType<T[P]>>

0 commit comments

Comments
 (0)