import { GroupType, SchoolType } from "./codes.js"; import { Person } from "./persons.js"; //#region src/SS12000/types/groups.d.ts type Group = { id: string; meta?: { created: string | Date; modified: string | Date; }; startDate?: string | Date; displayName?: string; groupType: GroupType; schoolType?: SchoolType; groupMemberships?: { person: Pick; startDate: string | Date; endDate: string | Date; }[]; }; //#endregion export { Group }; //# sourceMappingURL=groups.d.ts.map