Interface CSSTransformValue

    interface CSSTransformValue {
        is2D: boolean;
        length: number;
        [iterator](): ArrayIterator<CSSTransformComponent>;
        entries(): ArrayIterator<[number, CSSTransformComponent]>;
        forEach(callbackfn: ((value: CSSTransformComponent, key: number, parent: CSSTransformValue) => void), thisArg?: any): void;
        keys(): ArrayIterator<number>;
        toMatrix(): DOMMatrix;
        toString(): string;
        values(): ArrayIterator<CSSTransformComponent>;
        [index: number]: CSSTransformComponent;
    }
    Hierarchy

    Indexable

    Properties

    is2D: boolean
    length: number

    Methods