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