Skip to main content
Module

x/supabase/mod.ts>Session

An isomorphic Javascript client for Supabase.
Go to Latest
interface Session
import { type Session } from "https://deno.land/x/supabase@1.3.1/mod.ts";

Properties

optional
provider_token: string | null
access_token: string
optional
expires_in: number

The number of seconds until the token expires (since it was issued). Returned when a login is confirmed.

optional
expires_at: number

A timestamp of when the token will expire. Returned when a login is confirmed.

optional
refresh_token: string
token_type: string
user: User | null