Search
Loading...
Skip to content

Type Alias: SettingsBool

type SettingsBool = { [K in keyof Settings]: Settings[K] extends boolean ? K : never }[keyof Settings];

Represents the boolean settings available in the editor.

Deprecated#

Use keyof Settings or extract the boolean keys from Settings instead.