summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/designers-config.ts
blob: c784be2707b35d6c3a46af9dfaa7ad3af429bfb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export class Designer {
    displayName: string;
    designerHost: string;
    designerPort: number;
    designerPath: string;
    designerStateUrl: string;
    designerProtocol: string;
    designerButtonLocation: Array<string>;
    designerTabPresentation: Array<string>;
}

export type Designers = Array<Designer>;

export class DesignersConfiguration {
    static designers: Designers;
}