polyv-live-cli
Version:
CLI tool for managing PolyV live streaming services.
12 lines • 480 B
TypeScript
import { Command } from 'commander';
import { AppConfig } from './types/config';
declare function getVersion(): string;
declare function loadAndValidateConfig(program: Command): Promise<AppConfig | null>;
declare function main(): Promise<void>;
export declare function extractCommands(program: Command): {
topLevel: string[];
subCommands: Map<string, string[]>;
};
export { main, loadAndValidateConfig, getVersion };
//# sourceMappingURL=index.d.ts.map