1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/interfaces/context.ts

9 lines
189 B
TypeScript
Raw Normal View History

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