UNPKG

fastify-cli

Version:

Run a fastify route with one command!

12 lines (9 loc) 279 B
import { FastifyPlugin } from 'fastify' declare module 'fastify' { export interface FastifyInstance { // This is an example decorator type added to fastify exampleDecorator: () => string } } declare const example: FastifyPlugin<() => string> export default example