interface Token {
    access_token: string;
    expiry: Date;
    raw: any;
    refresh_token: string;
    token_type: string;
}

Properties

access_token: string
expiry: Date
raw: any
refresh_token: string
token_type: string