@capgo/cli
Version:
A CLI to upload to capgo servers
15 lines (14 loc) • 408 B
TypeScript
interface SendUpdateNotificationsOptions {
appId: string;
apikey?: string;
channels?: string[];
silent?: boolean;
verbose?: boolean;
}
interface UpdateCheckResponse {
queued?: boolean;
campaignId?: string;
queuedBuckets?: number;
}
export declare function sendUpdateNotificationsForChannels(options: SendUpdateNotificationsOptions): Promise<UpdateCheckResponse[]>;
export {};