UNPKG

polyv-live-cli

Version:

CLI tool for managing PolyV live streaming services.

12 lines 590 B
import { Command } from 'commander'; import { AuthConfig } from '../types/auth'; import { OutputFormat } from '../types/platform'; import { PromotionServiceConfig } from '../types/promotion'; export declare function loadAuthAndServiceConfig(parentOptions: Record<string, unknown>): Promise<{ authConfig: AuthConfig; serviceConfig: PromotionServiceConfig; isVerbose: boolean; }>; export declare function validateOutputFormat(format: string): OutputFormat; export declare function registerPromotionCommands(program: Command): void; //# sourceMappingURL=promotion.commands.d.ts.map