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