Package Exports
- @antv/event-emitter
- @antv/event-emitter/esm/index.js
- @antv/event-emitter/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@antv/event-emitter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@antv/event-emitter
event-emitter for @antvis.
Install
npm i --save @antv/event-emitter
Usage
import EE from '@antv/event-emitter';
const ee = new EE();
ee.on('mouseover', () => {});
ee.once('click', () => {});
ee.on('*', () => {});
ee.emit('click', 1, 'hello', true);
ee.off('click');API
Simple and similar with event-emitter.
on(evt: string, callback: Function): listen an event.once(evt: string, callback: Function): listen a event only once.emit(evt: string, ...parameters: any[]): emit / trigger an event with parameters.off(evt?: string, callback?: Function): unsubscribe an event.getEvents(): get all the exist events.