Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
14 lines
905 B
Plaintext
14 lines
905 B
Plaintext
export type InstrumentHandlerType = 'console' | 'dom' | 'fetch' | 'fetch-body-resolved' | 'history' | 'xhr' | 'error' | 'unhandledrejection';
|
|
export type InstrumentHandlerCallback = (data: any) => void;
|
|
/** Add a handler function. */
|
|
export declare function addHandler(type: InstrumentHandlerType, handler: InstrumentHandlerCallback): void;
|
|
/**
|
|
* Reset all instrumentation handlers.
|
|
* This can be used by tests to ensure we have a clean slate of instrumentation handlers.
|
|
*/
|
|
export declare function resetInstrumentationHandlers(): void;
|
|
/** Maybe run an instrumentation function, unless it was already called. */
|
|
export declare function maybeInstrument(type: InstrumentHandlerType, instrumentFn: () => void): void;
|
|
/** Trigger handlers for a given instrumentation type. */
|
|
export declare function triggerHandlers(type: InstrumentHandlerType, data: unknown): void;
|
|
//# sourceMappingURL=handlers.d.ts.map |