@launchql/cli
Version:
LaunchQL CLI
12 lines (11 loc) • 856 B
TypeScript
import { ParsedArgs } from 'minimist';
export declare const extractFirst: (argv: Partial<ParsedArgs>) => {
first: string;
newArgv: {
_: string[];
"--"?: string[] | undefined;
};
};
export declare function displayVersion(): void;
export declare const usageText = "\n Usage: launchql <command> [options]\n \n Commands:\n start Start the Launchql services.\n version, -v Display the version of the Starship Client.\n \n Configuration File:\n --config <path> Specify the path to the configuration file containing the actual config file. Required.\n Command-line options will override settings from this file if both are provided.\n \n Additional Help:\n $ launchql help Display this help information.\n ";
export declare function displayUsage(): void;