Files
stash/packages/runtime/src/global.d.ts
Morten Olsen f9494c88e2 update
2025-12-10 09:11:03 +01:00

13 lines
263 B
TypeScript

import 'fastify';
import type { Services } from './utils/utils.services.ts';
// eslint-disable-next-line
declare type ExplicitAny = any;
declare module 'fastify' {
// eslint-disable-next-line
export interface FastifyInstance {
services: Services;
}
}