@capgo/cli
Version:
A CLI to upload to capgo servers
6 lines (5 loc) • 330 B
TypeScript
import type { ChannelAddOptions } from '../schemas/channel';
export declare function addChannelInternal(channelId: string, appId: string, options: ChannelAddOptions, silent?: boolean): Promise<{
name: string;
}>;
export declare function addChannel(channelId: string, appId: string, options: ChannelAddOptions): Promise<void>;