Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(type): add caster for SchemaType #10865

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2948,6 +2948,9 @@ declare module 'mongoose' {
/** String representation of what type this is, like 'ObjectID' or 'Number' */
instance: string;

/** The caster instance associated with this schematype (for embedded). */
caster?: SchemaType;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it would be better to put this property on Subdocument and DocumentArray schema types. Those are the only schema types on which this property is defined.


/** The options this SchemaType was instantiated with */
options: AnyObject;

Expand Down