8 lines
103 B
TypeScript
8 lines
103 B
TypeScript
|
import 'fastify';
|
||
|
|
||
|
declare module 'fastify' {
|
||
|
interface FastifyRequest {
|
||
|
user?: IAuthUser;
|
||
|
}
|
||
|
}
|