type IErrorEventHandlerConstructData = { apiUrl: string; }; interface IErrorEventHandler { handle(event: ErrorEvent): void; } declare class ErrorEventHandler implements IErrorEventHandler { #private; constructor(data: IErrorEventHandlerConstructData); handle(error: ErrorEvent): void; } export { ErrorEventHandler }; export type { IErrorEventHandler, IErrorEventHandlerConstructData }; //# sourceMappingURL=ErrorEventHandler.d.ts.map