refresh_token_response.d.ts 144 B

123456
  1. export interface RefreshTokenResponse {
  2. access_token: string;
  3. scope: string;
  4. expires_in: string | number;
  5. token_type: string;
  6. }