Describes an object that provides us with data we need to register css rules on the page.

interface CssRulesProvider {
    CSSCLASS: string;
    CSSRULES: CssRule[];
}

Properties

Properties

CSSCLASS: string

The css class name to apply. This string should not have a leading dot.

CSSRULES: CssRule[]

The css rules to register in <head>.

Generated using TypeDoc