feat(shared): reworked shared library
Shared library is now access using `@shared/module`
This commit is contained in:
parent
1bc33ab912
commit
37403d304a
56 changed files with 366 additions and 970 deletions
12
src/icons/dist/app.d.ts
vendored
Normal file
12
src/icons/dist/app.d.ts
vendored
Normal 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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue