import type { Emitter } from './emitter'; import type { EventEmitterOptionsType } from './events/types'; import type { SettingsType } from '@palmares/core'; export type EventsSettingsType = { EVENTS_EMITTER: Promise<{ default: TEmitter; }> | TEmitter; EVENTS_OPTIONS?: EventEmitterOptionsType & { emitterParams?: any[]; }; } & SettingsType; //# sourceMappingURL=types.d.ts.map