Initial commit

This commit is contained in:
2021-03-09 22:00:10 +01:00
commit 70c0886aa5
52 changed files with 12763 additions and 0 deletions

8
src/data/models/Model.ts Normal file
View File

@@ -0,0 +1,8 @@
import { DataType } from '../DataType.enum'
export interface Model<DT extends DataType> {
_id?: string
_rev?: string
_deleted?: boolean
$type: DT
}