5 lines
148 B
TypeScript
5 lines
148 B
TypeScript
import { ConstructorOptions } from 'eventemitter2';
|
|
export interface EventEmitterModuleOptions extends ConstructorOptions {
|
|
global?: boolean;
|
|
}
|