interface StylePropertyMap {
    size: number;
    append(property: string, ...values: (string | CSSStyleValue)[]): void;
    clear(): void;
    delete(property: string): void;
    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;
    set(property: string, ...values: (string | CSSStyleValue)[]): void;
}

Hierarchy (View Summary)

Properties

size: number

Methods

  • Parameters

    • property: string

    Returns void