| 26 | import { FastifyRouterOptions } from '../fastify' |
| 27 | |
| 28 | export interface PrintRoutesOptions { |
| 29 | method?: HTTPMethods; |
| 30 | includeMeta?: boolean | (string | symbol)[] |
| 31 | commonPrefix?: boolean |
| 32 | includeHooks?: boolean |
| 33 | } |
| 34 | |
| 35 | type AsyncFunction = (...args: any) => Promise<any> |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected