UNPKG

polyv-live-cli

Version:

CLI tool for managing PolyV live streaming services.

17 lines 743 B
import { BaseHandler } from './base.handler'; import type { AuthConfig } from '../types/auth'; import { type ApiServiceConfig } from '../utils/api-command'; export declare class MaterialHandler extends BaseHandler { private readonly service; constructor(authConfig: AuthConfig, serviceConfig: ApiServiceConfig); listMaterials(options: any): Promise<void>; deleteMaterials(options: any): Promise<void>; listCategories(options: any): Promise<void>; listLabels(options: any): Promise<void>; createLabel(options: any): Promise<void>; updateLabel(options: any): Promise<void>; deleteLabel(options: any): Promise<void>; private show; private requireFields; } //# sourceMappingURL=material.handler.d.ts.map