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;
hasCustomAuthorizationHeader?: boolean;
};§Type
§
{
[src]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;
hasCustomAuthorizationHeader?: boolean;
}