UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

26 lines (24 loc) 487 B
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<ModelType.Portal, Being> implements IModel<ModelType.Portal, Being> { readonly being: IOntology<ModelType.Portal, Being>; readonly knowledge: null = null; }