accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
23 lines (21 loc) • 568 B
text/typescript
import {
EpistemicTypes,
} from './EpistemicTypes';
import {
ISerializedAwarenessRelation,
} from '../relations/ISerializedAwarenessRelation';
import {
ISerializedThoughtRelation,
} from '../relations/ISerializedThoughtRelation';
import {
ITag,
} from '../../tags/ITag';
import {
ModelType,
} from '../models/ModelType';
export interface ISerializedEpistemology {
readonly awareness: ISerializedAwarenessRelation | null;
readonly modelType: EpistemicTypes | ModelType.Thought;
readonly tags: ITag[];
readonly thoughts: ISerializedThoughtRelation;
}