accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
16 lines (14 loc) • 328 B
text/typescript
import {
EpistemicTypes,
} from '../epistemology/EpistemicTypes';
import {
OnticTypes,
} from '../ontology/OnticTypes';
import {
ITag,
} from '../../tags/ITag';
export interface ISerializedAwarenessRelation {
readonly modelType: EpistemicTypes & OnticTypes;
readonly perceptions: string[];
readonly tags: ITag[];
}