Interface ConnectionTokenSet

interface ConnectionTokenSet {
    accessToken: string;
    connection: string;
    expiresAt: number;
    scope?: string;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

accessToken: string
connection: string
expiresAt: number
scope?: string