mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-04-04 06:52:16 -04:00
9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
import { EventEmitter } from 'fbemitter';
|
|
|
|
/**
|
|
* Create a new event emitter instance which is used by the app
|
|
* to communicate between components.
|
|
*/
|
|
const emitter = new EventEmitter();
|
|
export default emitter;
|