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.
type SettingsBool = { [K in keyof Settings]: Settings[K] extends boolean ? K : never }[keyof Settings];
Represents the boolean settings available in the editor.
Use keyof Settings or extract the boolean keys from Settings instead.