UNPKG

polyv-live-cli

Version:

CLI tool for managing PolyV live streaming services.

18 lines 522 B
export type GlobalOutputFormat = 'table' | 'json'; export interface GlobalServiceConfig { baseUrl: string; timeout?: number; debug?: boolean; } export interface GlobalBaseOptions { output?: GlobalOutputFormat; } export interface GlobalAuthUpdateOptions extends GlobalBaseOptions { authSettings: unknown[]; force?: boolean; } export interface GlobalPageSettingUpdateOptions extends GlobalBaseOptions { config?: Record<string, unknown>; force?: boolean; } //# sourceMappingURL=global.d.ts.map