10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
declare module 'fastify' {
|
|
interface FastifyRequest {
|
|
roles?: string[]
|
|
user?: any
|
|
token?: string
|
|
permissions?: string[][]
|
|
depts?: string[]
|
|
}
|
|
}
|