type StyleOverrides
An object that includes a base style reference and style overrides.
static
type StyleOverrides<TDefinition> = {
[UIStyle.OVERRIDES_BASE]: {
new (): UIStyle<TDefinition>;
};
overrides: Array<Readonly<TDefinition> | undefined>;
}Notes
- This object is produced by UIStyle.override() and accepted as a valid value for the UIStyle.TypeOrOverrides type.
Related
- class UIStyleA class that defines a set of styles that can be applied to UI components.
