UNPKG

@robotlegsjs/createjs

Version:
29 lines (28 loc) 741 B
import { Event } from "@robotlegsjs/core"; /** * Container existence event * * @private */ export declare class ContainerRegistryEvent extends Event { static CONTAINER_ADD: string; static CONTAINER_REMOVE: string; static ROOT_CONTAINER_ADD: string; static ROOT_CONTAINER_REMOVE: string; private _container; /** * The container associated with this event */ get container(): createjs.Container; /** * Creates a new container existence event * * @param type The event type * @param container The container associated with this event */ constructor(type: string, container: createjs.Container); /** * @inheritDoc */ clone(): ContainerRegistryEvent; }