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.

13 lines (12 loc) 266 B
import type { TokenType } from '../types.js'; /** * The Token Object */ export interface Token { tokenType: TokenType; refreshToken: string; refreshTokenExpiryDate: Date; accessToken: string; accessTokenExpiryDate: Date; realmId: string; }