corgi/typings/extend.d.ts
2021-04-19 18:06:36 +08:00

10 lines
165 B
TypeScript

import fastify from 'fastify'
declare module 'fastify' {
interface FastifyRequest{
roles?: string[],
user?: any,
token?: string
}
}