import { Entity } from './Entity'; import { IsParentOf } from '../relations/IsParentOf'; export class Context extends Entity { name: string; parent: IsParentOf; children: Array>; }