/** * @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 { ClassLoader } from '../../interfaces/bootstrap-config.js'; import { _InjectablesHolder } from '../../registry/_injectables-holder.js'; export declare type Constructor = { new (): T; } | { new (...args: any): T; }; export interface ServiceInjection { name: string | symbol | unknown; propertyKey: string | symbol; } export declare function classLoaderFactory(injectables: _InjectablesHolder): ClassLoader;