1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/interfaces/context.ts

14 lines
273 B
TypeScript
Raw Normal View History

export interface IUnleashContextDefinition {
name: string;
description: string;
createdAt: string;
sortOrder: number;
stickiness: boolean;
legalValues?: ILegalValue[];
}
export interface ILegalValue {
value: string;
description?: string;
}