ft_transcendence/src/icons/dist/app.d.ts
maix0 37403d304a feat(shared): reworked shared library
Shared library is now access using `@shared/module`
2025-07-29 14:14:44 +02:00

12 lines
394 B
TypeScript

import { AutoloadPluginOptions } from '@fastify/autoload';
import { FastifyPluginAsync } from 'fastify';
export type AppOptions = {} & Partial<AutoloadPluginOptions>;
declare const options: AppOptions;
declare module 'fastify' {
interface FastifyInstance {
image_store: string;
}
}
declare const app: FastifyPluginAsync<AppOptions>;
export default app;
export { app, options };