diff --git a/desktop/plugins/public/ui-debugger/types.tsx b/desktop/plugins/public/ui-debugger/types.tsx index 89a204fcb..4e8bca042 100644 --- a/desktop/plugins/public/ui-debugger/types.tsx +++ b/desktop/plugins/public/ui-debugger/types.tsx @@ -67,7 +67,9 @@ export type Inspectable = | InspectableObject | InspectableText | InspectableNumber - | InspectableColor; + | InspectableColor + | InspectableBoolean + | InspectableEnum; export type InspectableText = { type: 'text'; @@ -81,6 +83,18 @@ export type InspectableNumber = { mutable: boolean; }; +export type InspectableBoolean = { + type: 'boolean'; + value: boolean; + mutable: boolean; +}; + +export type InspectableEnum = { + type: 'enum'; + value: {value: string; values: string[]}; + mutable: boolean; +}; + export type InspectableColor = { type: 'color'; value: Color;