@tawaship/pixim-animate-container - v3.0.0
    Preparing search index...

    Interface ICreatejsDisplayObject<T>

    Contract of every wrapper display object class. Implementations are supplied per class (no mixin); this interface makes the compiler verify that nothing is missing.

    interface ICreatejsDisplayObject<T extends Container> {
        mask: TCreatejsMask;
        pixi: T;
        addEventListener(
            type: string,
            cb: ICreatejsInteractionEventDelegate | CreatejsButtonHelper,
            useCapture?: boolean,
        ): ICreatejsInteractionEventDelegate | CreatejsButtonHelper;
        removeAllEventListeners(type?: string): void;
        removeEventListener(
            type: string,
            cb: ICreatejsInteractionEventDelegate,
            useCapture?: boolean,
        ): void;
        updateBlendModeForPixi(mode: BLEND_MODES): void;
    }

    Type Parameters

    • T extends Container

    Implemented by

    Index
    pixi: T