UNPKG

@rontian/egret-robotlegs

Version:

Egret View Integration with RobotlegsJS

22 lines (21 loc) 601 B
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: egret.DisplayObjectContainer); /** * */ configure(): void; /** * The root Container for this Context */ get view(): egret.DisplayObjectContainer; }