Interface StylePropertyMapReadOnly

interface StylePropertyMapReadOnly {
    size: number;
    forEach(callbackfn, thisArg?): void;
    get(property): CSSStyleValue;
    getAll(property): CSSStyleValue[];
    has(property): boolean;
}

Hierarchy (view full)

Properties

Methods

Properties

size: number

Methods

  • Parameters

    • callbackfn: Object
    • Optional thisArg: any

    Returns void

  • Parameters

    • property: string

    Returns boolean