UNPKG

@zup-it/beagle-backend-cli

Version:

CLI for Beagle Backend using TypeScript

9 lines (8 loc) 464 B
import { StartOptions } from './types'; /** * String expected by the hot reloading service (cli: start) for identifying a server restart. * * @privateRemarks if you change this, don't forget to also change the variable of same name in the module "core". */ export declare const hotReloadingString = "__[HOT RELOADING: SERVER_STARTED]__"; export declare function startServer({ hotReloadingDisabled, hotReloadingPort, entrypoint }: StartOptions): Promise<void>;