/** * @license * Copyright Andrey Chalkin (https://github.com/L2jLiga). All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/L2jLiga/fastify-decorators/blob/master/LICENSE */ import { FastifyPluginAsync } from 'fastify'; import { ClassLoader } from '../interfaces/bootstrap-config.js'; import { BootstrapConfig } from '../interfaces/index.js'; import { CLASS_LOADER } from '../symbols/index.js'; declare module 'fastify' { interface FastifyInstance { [CLASS_LOADER]: ClassLoader; } } export declare const bootstrap: FastifyPluginAsync;