Search
Loading...
Skip to content

Type Alias: SettingsColor

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.