Interface Style

The Style is the main interface and the root for all other interfaces.

interface Style {
    metadata?: {
        [key: string]: any;
    };
    name: string;
    rules: Rule[];
}

Properties

Properties

metadata?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
name: string
rules: Rule[]