docs/interfaces/auth.TokenSet.html
interface TokenSet {
access_token: string;
refresh_token?: string;
id_token?: string;
token_type: "Bearer";
expires_in: number;
}
access_tokenrefresh_token?id_token?token_typeexpires_in
access_token: string
The access token.
Optionalrefresh_tokenrefresh_token?: string
The refresh token, available with the offline_access scope.
Optionalid_tokenid_token?: string
The user's ID Token.
token_type: "Bearer"
The token type of the access token.
expires_in: number
The duration in secs that the access token is valid.
Member Visibility
ThemeOSLightDark
Properties access_tokenrefresh_tokenid_tokentoken_typeexpires_in