Interface Token

interface Token {
    access_token: string;
    expiry: Date;
    refresh_token: string;
}

Properties

access_token: string
expiry: Date
refresh_token: string