UNPKG

@electric-sql/cli

Version:

ElectricSQL command line interface (CLI).

10 lines (9 loc) 277 B
import { Command } from 'commander'; import { Config } from '../config.js'; type StopCommandArgs = { config: Config; remove?: boolean; }; export declare function makeStopCommand(): Command; export declare function stop(opts: StopCommandArgs): Promise<void>; export {};