/** * @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 { ControllerConfig } from '../interfaces/index.js'; /** * Creates register method on controller to allow bootstrap it */ export declare function Controller(): ClassDecorator; export declare function Controller(route: string): ClassDecorator; export declare function Controller(config: ControllerConfig): ClassDecorator;