mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-24 20:06:55 +01:00
13 lines
295 B
TypeScript
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)',
|
|
};
|