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) 348 B
import { Invoice, type SearchResponse, type InvoiceOptions } from '../../../../types/types.js'; import { InvoiceAPI } from '../invoice-api.js'; /** * Get All Invoices * @param this - The Invoice API * @returns The Invoices */ export declare function getAllInvoices(this: InvoiceAPI, options?: InvoiceOptions): Promise<SearchResponse<Invoice>>;