Interface StylePropertyMap

interface StylePropertyMap {
    size: number;
    append(property, ...values): void;
    clear(): void;
    delete(property): void;
    forEach(callbackfn, thisArg?): void;
    get(property): CSSStyleValue;
    getAll(property): CSSStyleValue[];
    has(property): boolean;
    set(property, ...values): void;
}

Hierarchy (view full)

Properties

size: number

Methods

  • Parameters

    Returns void

  • Returns void

  • Parameters

    • property: string

    Returns void

  • Parameters

    • callbackfn: Object
    • Optional thisArg: any

    Returns void

  • Parameters

    Returns void