polyv-live-cli
Version:
CLI tool for managing PolyV live streaming services.
15 lines • 800 B
TypeScript
import { Command } from 'commander';
export declare function parsePageSize(value: string): number;
export declare function validateOutputFormat(value: string): 'table' | 'json';
export declare function validateYn(value: string): 'Y' | 'N';
export declare function parsePositiveInteger(value: string): number;
export declare function parseNonNegativeInteger(value: string): number;
export declare function parseBooleanOption(value: string): boolean;
export declare function parseJoinHistoryList(value: string): 0 | 1;
export declare function parseCommaList(value: string): string[];
export declare function parseRobotList(value: string): Array<{
name: string;
avatar: string;
}>;
export declare function registerChatCommands(program: Command): void;
//# sourceMappingURL=chat.commands.d.ts.map