bpms_site/.svn/pristine/24/24fbe2405158519657837bf38927921a7f0451b9.svn-base
2025-11-02 16:38:49 +03:30

6 lines
255 B
Plaintext

export type ErrorHandler = (error: Error) => void;
export declare const RuntimeErrorHandler: {
hadRuntimeError: boolean;
};
export declare function useErrorHandler(handleOnUnhandledError: ErrorHandler, handleOnUnhandledRejection: ErrorHandler): void;