import { IModel, } from './IModel'; import { IOntology, } from '../ontology/IOntology'; import { ModelBase, } from './ModelBase'; import { ModelType, } from './ModelType'; import { OnticTypes, } from '../ontology/OnticTypes'; // @ts-ignore export class PortalModel< Being extends OnticTypes > extends ModelBase implements IModel { readonly being: IOntology; readonly knowledge: null = null; }