Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/gotrue/src/lib/types.ts>Session

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