UNPKG

quickbooks-api

Version:

A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.

12 lines (11 loc) 288 B
import type { TokenType } from '../types.js'; /** * The object returned from the Token Exchange Request */ export interface TokenResponse { token_type: TokenType; expires_in: number; refresh_token: string; x_refresh_token_expires_in: number; access_token: string; }