polyv-live-cli
Version:
CLI tool for managing PolyV live streaming services.
13 lines • 676 B
TypeScript
import { Command } from 'commander';
import { AuthConfig } from '../types/auth';
import { PlatformServiceConfig } from '../types/platform';
export declare function loadAuthAndServiceConfig(parentOptions: Record<string, unknown>): Promise<{
authConfig: AuthConfig;
serviceConfig: PlatformServiceConfig;
isVerbose: boolean;
}>;
export declare function validateEnabledValue(value: string): 'Y' | 'N';
export declare function validateOutputFormat(value: string): 'table' | 'json';
export declare function validateUrlFormat(value: string): string;
export declare function registerPlatformCommands(program: Command): void;
//# sourceMappingURL=platform.commands.d.ts.map