UNPKG

237 BTypeScriptView Raw
1import { IModelOptions } from "./decorations/ModelDecorations";
2export interface IModel {
3 clazzType: string;
4}
5/**
6 * Model definition
7 */
8export interface IModelType {
9 options: IModelOptions;
10 name: string;
11 clazz: any;
12}