Skip to content

Commit 34d2796

Browse files
committedJul 16, 2021
fix(index.d.ts): add discriminator() for single nested subdocs to type definitions
Re: #10435
1 parent ed1bffb commit 34d2796

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎index.d.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1799,12 +1799,15 @@ declare module 'mongoose' {
17991799
auto(turnOn: boolean): this;
18001800
}
18011801

1802-
class Embedded extends SchemaType {
1802+
class Embedded extends SchemaType implements AcceptsDiscriminator {
18031803
/** This schema type's name, to defend against minifiers that mangle function names. */
18041804
static schemaName: string;
18051805

18061806
/** The document's schema */
18071807
schema: Schema;
1808+
1809+
discriminator<D>(name: string | number, schema: Schema<D>, value?: string): Model<D>;
1810+
discriminator<T, U extends Model<T>>(name: string | number, schema: Schema<T, U>, value?: string): U;
18081811
}
18091812

18101813
class String extends SchemaType {

0 commit comments

Comments
 (0)
Please sign in to comment.