Skip to content

Commit fe9bc23

Browse files
authoredJan 6, 2023
Merge pull request #12870 from JavaScriptBach/const-array
Correctly infer string enums on const arrays
2 parents a2af383 + 6f243a9 commit fe9bc23

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed
 

‎test/types/schema.test.ts

+20
Original file line numberDiff line numberDiff line change
@@ -998,3 +998,23 @@ function gh12782() {
998998
function gh12816() {
999999
const schema = new Schema({}, { overwriteModels: true });
10001000
}
1001+
1002+
function gh12869() {
1003+
const dbExampleConst = new Schema(
1004+
{
1005+
active: { type: String, enum: ['foo', 'bar'] as const, required: true }
1006+
}
1007+
);
1008+
1009+
type ExampleConst = InferSchemaType<typeof dbExampleConst>;
1010+
expectType<'foo' | 'bar'>({} as ExampleConst['active']);
1011+
1012+
const dbExample = new Schema(
1013+
{
1014+
active: { type: String, enum: ['foo', 'bar'], required: true }
1015+
}
1016+
);
1017+
1018+
type Example = InferSchemaType<typeof dbExample>;
1019+
expectType<'foo' | 'bar'>({} as Example['active']);
1020+
}

‎types/inferschematype.d.ts

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

173173
/**
174174
* @summary Resolve path type by returning the corresponding type.

0 commit comments

Comments
 (0)
Please sign in to comment.