oa_based/types/module.d.ts

8 lines
103 B
TypeScript
Raw Permalink Normal View History

2024-02-28 08:32:35 +08:00
import 'fastify';
declare module 'fastify' {
interface FastifyRequest {
user?: IAuthUser;
}
}