interface StylePropertyMapReadOnly {
    size: number;
    forEach(
        callbackfn: (
            value: CSSStyleValue[],
            key: string,
            parent: StylePropertyMapReadOnly,
        ) => void,
        thisArg?: any,
    ): void;
    get(property: string): undefined | CSSStyleValue;
    getAll(property: string): CSSStyleValue[];
    has(property: string): boolean;
}

Hierarchy (View Summary)

Properties

Methods

Properties

size: number

Methods

  • Parameters

    • property: string

    Returns boolean