polyv-live-cli
Version:
CLI tool for managing PolyV live streaming services.
15 lines • 837 B
TypeScript
import { Command } from 'commander';
import { AuthConfig } from '../types/auth';
import { OutputFormat } from '../types/platform';
import { AIDigitalHumanServiceConfig } from '../types/ai-digital-human';
import { AIVideoProduceServiceConfig } from '../types/ai-video-produce';
export declare function loadAuthAndServiceConfig(parentOptions: Record<string, unknown>): Promise<{
authConfig: AuthConfig;
serviceConfig: AIDigitalHumanServiceConfig & AIVideoProduceServiceConfig;
isVerbose: boolean;
}>;
export declare function validateOutputFormat(format: string): OutputFormat;
export declare function parsePositiveInteger(value: string): number;
export declare function parseNonNegativeInteger(value: string): number;
export declare function registerAiCommands(program: Command): void;
//# sourceMappingURL=ai.commands.d.ts.map