type SettingsColor = { [K in keyof Settings]: Settings[K] extends Color ? K : never }[keyof Settings];Represents the color settings available in the editor.
Deprecated#
Use keyof Settings or extract the color keys from Settings instead.
type SettingsColor = { [K in keyof Settings]: Settings[K] extends Color ? K : never }[keyof Settings];Represents the color settings available in the editor.
Use keyof Settings or extract the color keys from Settings instead.