/** * @module server */ /** End Typedoc Module Declaration */ import { EntityBootstrapper } from './entity.bootstrapper'; import { RegistryEntityStatic } from '../../common/registry/entityRegistry'; import { ControllerMetadata } from '../registry/decorators'; /** * Provides bootstrapping of the @[[Controller]] entities */ export declare class ControllerBootstrapper extends EntityBootstrapper { /** * Returns all controllers registered to the [[EntityRegistry]] */ getInjectableEntities(): RegistryEntityStatic[]; bootstrap(): void; }