1 | interface Fastify {
|
2 | register: (plugin: any) => void;
|
3 | addHook: (hook: string, handler: (request: any, reply: any, error: Error) => void) => void;
|
4 | }
|
5 | export declare const instrumentFastify: ((options?: unknown) => void) & {
|
6 | id: string;
|
7 | };
|
8 | /**
|
9 | * Express integration
|
10 | *
|
11 | * Capture tracing data for fastify.
|
12 | */
|
13 | export declare const fastifyIntegration: () => import("@sentry/types").Integration;
|
14 |
|
15 |
|
16 |
|
17 | export declare function setupFastifyErrorHandler(fastify: Fastify): void;
|
18 | export {};
|
19 |
|
\ | No newline at end of file |