@robotlegsjs/createjs
Version:
CreateJS View Integration with RobotlegsJS
26 lines (25 loc) • 582 B
TypeScript
import { Event } from "@robotlegsjs/core";
/**
* View Configuration Event
*
* @private
*/
export declare class ConfigureViewEvent extends Event {
static CONFIGURE_VIEW: string;
private _view;
/**
* The view instance associated with this event
*/
get view(): createjs.Container;
/**
* Creates a view configuration event
*
* @param type The event type
* @param view The associated view instance
*/
constructor(type: string, view: createjs.Container);
/**
* @inheritDoc
*/
clone(): ConfigureViewEvent;
}