UNPKG

@basetime/a2w-api-ts

Version:

Client library that communicates with the addtowallet API.

18 lines (17 loc) 285 B
/** * A response from the a2w auth endpoints. */ export interface Authed { /** * The ID token. */ idToken: string; /** * The refresh token. */ refreshToken: string; /** * The expiration time of the token. */ expiresAt: number; }