Skip to content

Commit baea9f5

Browse files
committedJan 3, 2023
Correctly infer string enums on const arrays
1 parent d10ad8c commit baea9f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎types/inferschematype.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ type ObtainDocumentPathType<PathValueType, TypeKey extends string = DefaultTypeK
162162
* @param {T} T A generic refers to string path enums.
163163
* @returns Path enum values type as literal strings or string.
164164
*/
165-
type PathEnumOrString<T extends SchemaTypeOptions<string>['enum']> = T extends (infer E)[] ? E : T extends { values: any } ? PathEnumOrString<T['values']> : string;
165+
type PathEnumOrString<T extends SchemaTypeOptions<string>['enum']> = T extends ReadonlyArray<infer E> ? E : T extends { values: any } ? PathEnumOrString<T['values']> : string;
166166

167167
/**
168168
* @summary Resolve path type by returning the corresponding type.

0 commit comments

Comments
 (0)
Please sign in to comment.