@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
22 lines • 671 B
TypeScript
export default EntityListView;
declare class EntityListView extends View<HTMLElement> {
/**
*
* @param {Editor} editor
* @param { (function(entity:number, ecd:EntityComponentDataset, view:View):void)[]} decorators
*/
constructor({ editor, decorators }: Editor);
el: HTMLDivElement;
on: {};
editor: Editor;
handlers: {
addOne: (entity: any) => void;
removeOne: (entity: any) => void;
selectOne: (entity: any) => void;
deselectOne: (entity: any) => void;
reset: () => void;
};
layout(): void;
}
import View from "../../../src/view/View.js";
//# sourceMappingURL=EntityList.d.ts.map