polyv-live-cli
Version:
CLI tool for managing PolyV live streaming services.
10 lines • 674 B
TypeScript
import { Command } from 'commander';
export declare function parseInteger(value: string): number;
export declare function validateCouponType(value: string): 'MAX_OUT' | 'DISCOUNT';
export declare function validateCouponStatus(value: string): 'NOT_START' | 'GOING' | 'FINISHED' | 'INVALID';
export declare function validateOutputFormat(value: string): 'table' | 'json';
export declare function validateYn(value: string): 'Y' | 'N';
export declare function parseCouponIds(value: string): string[];
export declare function validateSize(value: string): number;
export declare function registerCouponCommands(program: Command): void;
//# sourceMappingURL=coupon.commands.d.ts.map