(_class: Ref<Class<T>>, attributes: Data<T>, id?: Ref<T>)
| 37 | } |
| 38 | |
| 39 | export function createDoc<T extends Doc> (_class: Ref<Class<T>>, attributes: Data<T>, id?: Ref<T>): TxCreateDoc<Doc> { |
| 40 | return txFactory.createTxCreateDoc(_class, core.space.Model, attributes, id) |
| 41 | } |
| 42 | |
| 43 | export function genMinModel (): Array<TxCUD<Doc>> { |
| 44 | const txes = [] |
no test coverage detected