vot.js - v2.4.12
    Preparing search index...

    Interface StylePropertyMap

    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)

    Index

    Properties

    size: number

    Methods

    • Parameters

      Returns void

    • Returns void

    • Parameters

      • property: string

      Returns void

    • Parameters

      Returns void