UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

19 lines (18 loc) 282 B
export interface GroupsInterface { groups: []; } /** * Object from Backend */ export interface GroupInterface { id: number; name: string; } /** * Object from Backend */ export interface Group { id: number; members: Array<any>; childGroups: Array<any>; }