accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
21 lines (19 loc) • 415 B
text/typescript
import {
IModel,
} from './IModel';
import {
IOntology,
} from '../ontology/IOntology';
import {
ModelType,
} from './ModelType';
import {
OnticTypes,
} from '../ontology/OnticTypes';
export interface IObjectModel<
Being extends OnticTypes,
> extends IModel<ModelType.Object, Being> {
readonly being: IOntology<ModelType.Object, Being>;
readonly knowledge: null;
readonly type: ModelType.Object;
}