* 创建一个 document * @param data * @returns
(data?: IPublicTypeRootSchema)
| 103 | * @returns |
| 104 | */ |
| 105 | createDocument(data?: IPublicTypeRootSchema): IPublicModelDocumentModel | null { |
| 106 | const doc = this[projectSymbol].createDocument(data); |
| 107 | return ShellDocumentModel.create(doc); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * 删除一个 document |
nothing calls this directly
no test coverage detected