feat(shared): reworked shared library

Shared library is now access using `@shared/module`
This commit is contained in:
maix0 2025-06-16 23:16:34 +02:00 committed by Maieul BOYER
parent 1bc33ab912
commit 37403d304a
56 changed files with 366 additions and 970 deletions

12
src/icons/dist/app.d.ts vendored Normal file
View file

@ -0,0 +1,12 @@
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 };