Type alias NonObjectIdLikeDocument

NonObjectIdLikeDocument: {
    [key in keyof ObjectIdLike]?: never
} & Document

A type that extends Document but forbids anything that "looks like" an object id.一种扩展Document但禁止任何“看起来像”对象id的类型。

Generated using TypeDoc