@electric-sql/cli
Version:
ElectricSQL command line interface (CLI).
12 lines (11 loc) • 338 B
TypeScript
import { Command } from 'commander';
import { Config } from '../config.js';
export declare function makeStartCommand(): Command;
interface StartSettings {
detach?: boolean;
exitOnDetached?: boolean;
withPostgres?: boolean;
config: Config;
}
export declare function start(options: StartSettings): Promise<void>;
export {};