UNPKG

416 BTypeScriptView Raw
1import { InfoGroup } from "./info.group.entity";
2import { UserInfo } from "./user.info.entity";
3export declare class InfoItem {
4 id: number;
5 name: string;
6 label: string;
7 default: boolean;
8 description: string;
9 type: string;
10 necessary: boolean;
11 registerVisible: boolean;
12 informationVisible: boolean;
13 order: number;
14 userInfos: Array<UserInfo>;
15 groups: Array<InfoGroup>;
16}