@lokalise/node-api
Version:
Official Lokalise API 2.0 Node.js client
13 lines (11 loc) • 385 B
text/typescript
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;
}