UNPKG

polyv-live-cli

Version:

CLI tool for managing PolyV live streaming services.

29 lines 716 B
export type OutputFormat = 'table' | 'json'; export interface ViewerLabel { labelId: number; labelName: string; createdTime?: string; updatedTime?: string; } export interface PlatformLabelListOptions { output?: OutputFormat; } export interface PlatformLabelCreateOptions { labelName: string; output?: OutputFormat; } export interface PlatformLabelUpdateOptions { labelId: number; labelName: string; output?: OutputFormat; } export interface PlatformLabelDeleteOptions { labelId: number; output?: OutputFormat; } export interface PlatformLabelServiceConfig { baseUrl: string; timeout?: number; debug?: boolean; } //# sourceMappingURL=platform-label.d.ts.map