@robotlegsjs/pixi
Version:
PIXI View Integration with RobotlegsJS
24 lines (23 loc) • 607 B
TypeScript
import { IConfig } from "@robotlegsjs/core";
import { Container } from "pixi.js";
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: Container);
/**
*
*/
configure(): void;
/**
* The root Container for this Context
*/
get view(): Container;
}