UNPKG

@capgo/cli

Version:

A CLI to upload to capgo servers

23 lines (22 loc) 820 B
import type { ChannelAddOptions } from '../schemas/channel'; export declare function addChannelInternal(channelId: string, appId: string, options: ChannelAddOptions, silent?: boolean): Promise<{ allow_dev: boolean; allow_device: boolean; allow_device_self_set: boolean; allow_emulator: boolean; allow_prod: boolean; android: boolean; app_id: string; created_at: string; created_by: string; disable_auto_update: import("../sdk").Database["public"]["Enums"]["disable_update"]; disable_auto_update_under_native: boolean; id: number; ios: boolean; name: string; owner_org: string; public: boolean; updated_at: string; version: number; }>; export declare function addChannel(channelId: string, appId: string, options: ChannelAddOptions): Promise<void>;