UNPKG

@capgo/cli

Version:
9 lines (8 loc) 379 B
import type { SupabaseClient } from '@supabase/supabase-js'; import type { Options } from '../api/app'; import type { Database } from '../types/supabase.types'; export declare function resolveAccountIdentity(supabase: SupabaseClient<Database>, apikey: string): Promise<{ userId: string; email: string; }>; export declare function whoami(options: Options): Promise<void>;