Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoTrueClientOptions

type GoTrueClientOptions = {
url?: string;
headers?: {
[key: string]: string;
}
;
storageKey?: string;
detectSessionInUrl?: boolean;
autoRefreshToken?: boolean;
persistSession?: boolean;
storage?: SupportedStorage;
fetch?: Fetch;
flowType?: AuthFlowType;
debug?: boolean | ((message: string, ...args: any[]) => void);
lock?: LockFunc;
}
;

§Type

§
{
url?: string;
headers?: {
[key: string]: string;
}
;
storageKey?: string;
detectSessionInUrl?: boolean;
autoRefreshToken?: boolean;
persistSession?: boolean;
storage?: SupportedStorage;
fetch?: Fetch;
flowType?: AuthFlowType;
debug?: boolean | ((message: string, ...args: any[]) => void);
lock?: LockFunc;
}
[src]