interface CollectionStyle {
    addClass(classes: ClassNames): this;
    classes(classes: ClassNames): this;
    classes(classes: undefined | ClassNames): string[] | CollectionStyle;
    classes(): string[];
    css(name: string, value: any): this;
    css(name: string): any;
    css(obj: object): this;
    css(): {
        [index: string]: any;
    };
    flashClass(classes: ClassNames, duration?: number): this;
    removeClass(classes: ClassNames): this;
    removeStyle(names?: string): this;
    style(name: string, value: any): this;
    style(name: string): any;
    style(obj: object): this;
    style(): {
        [index: string]: any;
    };
    toggleClass(classes: ClassNames, toggle?: boolean): this;
}

Hierarchy (view full)

Methods