@capgo/cli
Version:
A CLI to upload to capgo servers
10 lines (9 loc) • 477 B
TypeScript
import type { SupabaseClient } from '@supabase/supabase-js';
import type { Options } from '../api/app';
import type { Database } from '../types/supabase.types';
export declare function resolveAccountEmail(supabase: SupabaseClient<Database>): Promise<string>;
export declare function resolveAccountIdentity(supabase: SupabaseClient<Database>, apikey: string): Promise<{
userId: string;
email: string;
}>;
export declare function whoami(options: Options): Promise<void>;