@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
25 lines • 481 B
TypeScript
export class InputBinding {
/**
*
* @param {string} path
* @param {function} listener
* @param {boolean} [exclusive=false]
*/
constructor({ path, listener, exclusive }: string);
/**
*
* @type {string}
*/
path: string;
/**
*
* @type {Function}
*/
listener: Function;
/**
* @deprecated don't use
* @type {boolean}
*/
exclusive: boolean;
}
//# sourceMappingURL=InputBinding.d.ts.map