UNPKG

@capgo/cli

Version:

A CLI to upload to capgo servers

32 lines (31 loc) 930 B
import type { OptionsBase } from '../schemas/base'; export declare function listChannelsInternal(appId: string, options: OptionsBase, silent?: boolean): Promise<{ id: number; name: string; public: boolean; ios: boolean; android: boolean; disable_auto_update: string; disable_auto_update_under_native: boolean; allow_device_self_set: boolean; allow_emulator: boolean; allow_device: boolean; allow_dev: boolean; allow_prod: boolean; version?: any; }[]>; export declare function listChannels(appId: string, options: OptionsBase): Promise<{ id: number; name: string; public: boolean; ios: boolean; android: boolean; disable_auto_update: string; disable_auto_update_under_native: boolean; allow_device_self_set: boolean; allow_emulator: boolean; allow_device: boolean; allow_dev: boolean; allow_prod: boolean; version?: any; }[]>;