UNPKG

accelerator-core

Version:

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

13 lines (11 loc) 240 B
import { IModel, } from './IModel'; import { ModelType, } from './ModelType'; export interface IThoughtModel extends IModel<ModelType.Thought> { readonly being: null; readonly knowledge: null; readonly type: ModelType.Thought; }