UNPKG

@capgo/cli

Version:
10 lines (9 loc) 477 B
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>;