@capgo/cli
Version:
A CLI to upload to capgo servers
11 lines (10 loc) • 392 B
TypeScript
interface NotificationSetupOptions {
serverUrl?: string;
file?: string;
force?: boolean;
install?: boolean;
sync?: boolean;
}
declare function renderNotificationHelper(appId: string, serverUrl: string): string;
export declare function setupNotifications(appIdArg: string | undefined, options: NotificationSetupOptions): Promise<void>;
export { renderNotificationHelper };