1 | declare module '@ember/-internals/error-handling' {
|
2 | export const onErrorTarget: {
|
3 | readonly onerror: Function | undefined;
|
4 | };
|
5 | export function getOnerror(): Function | undefined;
|
6 | export function setOnerror(handler: Function | undefined): void;
|
7 | export function getDispatchOverride(): Function | null;
|
8 | export function setDispatchOverride(handler: Function | null): void;
|
9 | }
|