/** * @module server */ /** End Typedoc Module Declaration */ import { EntityBootstrapper } from './entity.bootstrapper'; import { RegistryEntityStatic, EntityMetadata } from '../../common/registry/entityRegistry'; /** * Provides bootstrapping of the @[[Seeder]] entities */ export declare class SeederBootstrapper extends EntityBootstrapper { /** * Returns all seeders registered to the [[EntityRegistry]] */ getInjectableEntities(): RegistryEntityStatic[]; /** * Runs all seeders, awaiting completion of all before the main bootstrapper proceed * @todo update to assign tasks to the remote cli so it doesn't happen on startup * @returns {Promise|Promise} */ bootstrap(): Promise; }