diff options
Diffstat (limited to 'src/new_fields/Doc.ts')
-rw-r--r-- | src/new_fields/Doc.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/new_fields/Doc.ts b/src/new_fields/Doc.ts index 3eea6d2b2..3055af1bf 100644 --- a/src/new_fields/Doc.ts +++ b/src/new_fields/Doc.ts @@ -36,6 +36,7 @@ export class Doc extends RefField { const doc = new Proxy<this>(this, { set: setter, get: getter, + has: (target, key) => key in target.__fields, ownKeys: target => Object.keys(target.__fields), getOwnPropertyDescriptor: (target, prop) => { if (prop in target.__fields) { |