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 (9 loc) 255 B
// Export the Search Options export interface SearchResponse<T> { /** The Results */ results: Array<T>; /** Indicates if there is a next page */ hasNextPage?: boolean; /** The Intuit Transaction ID from the response header */ intuitTID: string; }