interface Style {
    append(style: string | Stylesheet | Stylesheet[]): this;
    clear(): this;
    fromJson(json: any): this;
    fromString(style: string): this;
    resetToDefault(): this;
    selector(s: string): this;
    style(key: string, value: string): this;
    style(css: cytoscape.Css.Node | cytoscape.Css.Edge): this;
    update(): void;
}

Methods