Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/gotrue/src/index.ts>Session

An isomorphic Javascript library for GoTrue.
Latest
interface Session
import { type Session } from "https://deno.land/x/gotrue@3.0.0/src/index.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