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