We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
wrap
Instead of
export declare function wrap<D extends Document>(model: Model<D>): Model<D>;
… it should probably rather be …:
export declare function wrap<D extends Document, M extends Model<D>>(model: M): M;
So that it plays will e.g. with @casl/mongoose.
@casl/mongoose
The text was updated successfully, but these errors were encountered:
Or even simpler:
export declare function wrap<M extends Model<any>>(model: M): M;
Sorry, something went wrong.
9324d4c
No branches or pull requests
Instead of
… it should probably rather be …:
So that it plays will e.g. with
@casl/mongoose
.The text was updated successfully, but these errors were encountered: