mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-02-20 07:54:10 -05: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;
|