mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
28 lines
556 B
TypeScript
28 lines
556 B
TypeScript
|
export interface IYesNoCount {
|
||
|
yes: number;
|
||
|
no: number;
|
||
|
}
|
||
|
|
||
|
export interface IAppInstance {
|
||
|
appName: string;
|
||
|
instanceId: string;
|
||
|
sdkVersion: string;
|
||
|
clientIp: string;
|
||
|
lastSeen: Date;
|
||
|
createdAt: Date;
|
||
|
}
|
||
|
|
||
|
export interface IApplication {
|
||
|
appName: string;
|
||
|
sdkVersion?: string;
|
||
|
strategies?: string[] | any[];
|
||
|
description?: string;
|
||
|
url?: string;
|
||
|
color?: string;
|
||
|
icon?: string;
|
||
|
createdAt: Date;
|
||
|
instances?: IAppInstance;
|
||
|
seenToggles: Record<string, any>;
|
||
|
links: Record<string, string>;
|
||
|
}
|