UNPKG

415 BTypeScriptView Raw
1export declare module OmniaProfiles {
2 interface IOmniaProfileInfo {
3 navigationSourceUrl: string;
4 }
5 interface IOmniaProfile {
6 id?: string;
7 title?: string;
8 description?: string;
9 data?: IOmniaProfileInfo;
10 }
11 interface IOmniaProfileMapping {
12 isInherit?: boolean;
13 current?: IOmniaProfile;
14 parent?: IOmniaProfile;
15 }
16}