16 lines
324 B
TypeScript
16 lines
324 B
TypeScript
|
export interface InfoResponse {
|
||
|
'display-ribbon-on-profiles'?: string;
|
||
|
git?: any;
|
||
|
build?: any;
|
||
|
activeProfiles?: string[];
|
||
|
}
|
||
|
|
||
|
export class ProfileInfo {
|
||
|
constructor(
|
||
|
public activeProfiles?: string[],
|
||
|
public ribbonEnv?: string,
|
||
|
public inProduction?: boolean,
|
||
|
public openAPIEnabled?: boolean
|
||
|
) {}
|
||
|
}
|