Files
2026-07-27 14:07:26 +08:00

10 lines
211 B
TypeScript

declare const uncaught: {
start(): void;
stop(): void;
addListener(fn: (err: Error) => void): void;
rmListener(fn: (err: Error) => void): void;
rmAllListeners(): void;
};
export = uncaught;