UNPKG

245 BTypeScriptView Raw
1import { ContextConfigDefault } from './utils'
2
3/**
4 * Route context object. Properties defined here will be available in the route's handler
5 */
6export interface FastifyContext<ContextConfig = ContextConfigDefault> {
7 config: ContextConfig;
8}