UNPKG

pi-test-data

Version:
13 lines (10 loc) 377 B
import { ContextConfigDefault } from './utils' // eslint-disable-next-line @typescript-eslint/no-empty-interface export interface FastifyContextConfig { } /** * Route context object. Properties defined here will be available in the route's handler */ export interface FastifyContext<ContextConfig = ContextConfigDefault> { config: FastifyContextConfig & ContextConfig; }