accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
27 lines (22 loc) • 415 B
text/typescript
import {
IModel,
} from './IModel';
import {
ModelBase,
} from './ModelBase';
import {
ModelType,
} from './ModelType';
export class ThoughtModel
extends ModelBase<ModelType.Thought>
implements IModel<ModelType.Thought>
{
public get being() {
return null;
}
public get knowledge() {
return null;
}
public readonly findAllGenerator = ((self: this) => function* () {
})(this);
}