UNPKG

217 BTypeScriptView Raw
1import { User } from "./user.entity";
2export declare class Organization {
3 id: number;
4 name: string;
5 users: Array<User>;
6 parentId: number;
7 parent: Organization;
8 children: Array<Organization>;
9}