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.

9 lines (8 loc) 343 B
import type { Account, AccountOptions, SearchResponse } from '../../../../types/types.js'; import { AccountAPI } from '../account-api.js'; /** * Get All Accounts * @param this - The Account API * @returns The Accounts */ export declare function getAllAccounts(this: AccountAPI, options?: AccountOptions): Promise<SearchResponse<Account>>;