UNPKG

excalibur

Version:

Excalibur.js is a simple JavaScript game engine with TypeScript bindings for making 2D games in HTML5 Canvas. Our mission is to make web game development as simple as possible.

7 lines (6 loc) 167 B
export declare abstract class ExEvent<TName extends string> { abstract readonly type: TName; private _active; get active(): boolean; cancel(): void; }