UNPKG

@robotlegsjs/createjs

Version:
14 lines (13 loc) 329 B
import { IClass } from "@robotlegsjs/core"; /** * View handler contract */ export interface IViewHandler { /** * View handler method * * @param view The view instance to handle * @param type The class of the view instance */ handleView(view: createjs.DisplayObject, type: IClass<any>): void; }