/** * Matches the type for the Angular NgClass properties */ export type NgStyleClass = string | string[] | Set | { [klass: string]: any; }; export type CssStyleObject = Partial; export type NgStyleValues = CssStyleObject | string; export interface StyleGroup { baseClass?: string; optionalClass?: string; style?: NgStyleValues; overrideDefault?: boolean; }