We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2a4f73 commit 867221aCopy full SHA for 867221a
test/types/models.test.ts
@@ -717,13 +717,13 @@ function gh13904() {
717
interface ITest {
718
name?: string;
719
}
720
- const Test = model<ITest>("Test", schema);
+ const Test = model<ITest>('Test', schema);
721
722
expectAssignable<Promise<InsertManyResult<ITest>>>(Test.insertMany(
723
- [{ name: "test" }],
+ [{ name: 'test' }],
724
{
725
ordered: false,
726
rawResult: true
727
728
));
729
-}
+}
0 commit comments