UNPKG

@datalayer/core

Version:
12 lines (11 loc) 327 B
import { IDean } from "./Dean"; import { IStudent } from "./Student"; import { ICourse } from "./Course"; import { IBaseOrganization } from "./Organization"; export type ISchool = IBaseOrganization & { type: 'school'; dean?: IDean; students: Array<IStudent>; courses: Array<ICourse>; }; export default ISchool;