@robotlegsjs/createjs
Version:
CreateJS View Integration with RobotlegsJS
23 lines (22 loc) • 580 B
TypeScript
import { IConfig } from "@robotlegsjs/core";
import { IContextView } from "../api/IContextView";
/**
* The Context View represents the root Container for a Context
*/
export declare class ContextView implements IContextView, IConfig {
private _view;
/**
* The Context View represents the root Container for a Context
*
* @param view The root Container for this Context
*/
constructor(view: createjs.Stage);
/**
*
*/
configure(): void;
/**
* The root Container for this Context
*/
get view(): createjs.Stage;
}