mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
export interface IApplication {
|
|
appName: string;
|
|
color: string;
|
|
createdAt: string;
|
|
description: string;
|
|
icon: string;
|
|
instances: [];
|
|
links: object;
|
|
seenToggles: [];
|
|
strategies: [];
|
|
url: string;
|
|
}
|