10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
import fastify from 'fastify'
|
|
|
|
declare module 'fastify' {
|
|
interface FastifyRequest{
|
|
roles?: string[],
|
|
user?: any,
|
|
token?: string
|
|
}
|
|
}
|