Skip to content

Commit 8435b9b

Browse files
authored
Merge pull request #15328 from Automattic/vkarpov15/default-function-returns-undefined
types: allow default function returning undefined with DocType override
2 parents b430b8a + 35c98c3 commit 8435b9b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

test/types/schema.test.ts

+9
Original file line numberDiff line numberDiff line change
@@ -1746,3 +1746,12 @@ async function schemaDouble() {
17461746
const doc = await TestModel.findOne().orFail();
17471747
expectType<Types.Double | null | undefined>(doc.balance);
17481748
}
1749+
1750+
function defaultReturnsUndefined() {
1751+
const schema = new Schema<{ arr: number[] }>({
1752+
arr: {
1753+
type: [Number],
1754+
default: () => void 0
1755+
}
1756+
});
1757+
}

types/schematypes.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ declare module 'mongoose' {
9797
* The default value for this path. If a function, Mongoose executes the function
9898
* and uses the return value as the default.
9999
*/
100-
default?: DefaultType<T> | ((this: EnforcedDocType, doc: any) => DefaultType<T>) | null;
100+
default?: DefaultType<T> | ((this: EnforcedDocType, doc: any) => DefaultType<T> | null | undefined) | null;
101101

102102
/**
103103
* The model that `populate()` should use if populating this path.

0 commit comments

Comments
 (0)