UNPKG

@lokalise/node-api

Version:
13 lines (11 loc) 385 B
import type { RefreshTokenResponse as RefreshTokenResponseInterface } from "../interfaces/refresh_token_response.js"; import { BaseModel } from "./base_model.js"; export class RefreshTokenResponse extends BaseModel implements RefreshTokenResponseInterface { declare access_token: string; declare scope: string; declare expires_in: string | number; declare token_type: string; }