import 'fastify' import { ViteDevServer } from 'vite' declare global { type ANY = any const __STATE__: any } declare module '*.scss' declare module '*.module.scss' { const classes: Record export default classes } declare module 'fastify' { interface FastifyInstance { auth: string devServer: ViteDevServer } interface FastifyRequest { login: string user: Promise } interface FastifyReply { ctx: { [key: string]: any } } } export {}