| 35 | export type FastifyLoggerInstance = FastifyBaseLogger |
| 36 | |
| 37 | export interface FastifyLoggerStreamDestination { |
| 38 | write(msg: string): void; |
| 39 | } |
| 40 | |
| 41 | // TODO: once node 18 is EOL, this type can be replaced with plain FastifyReply. |
| 42 | /** |
no outgoing calls
no test coverage detected