1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-11-24 20:06:55 +01:00
unleash.unleash/frontend/src/component/feature/Dependencies/constants.ts
2024-03-29 19:28:49 +01:00

13 lines
295 B
TypeScript

export type ParentValue =
| { status: 'enabled' }
| { status: 'disabled' }
| {
status: 'enabled_with_variants';
variants: string[];
};
export const REMOVE_DEPENDENCY_OPTION = {
key: 'none (remove dependency)',
label: 'none (remove dependency)',
};