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.

11 lines (10 loc) 472 B
import { Invoice, type InvoiceOptions, type SearchResponse } from '../../../../types/types.js'; import { InvoiceAPI } from '../invoice-api.js'; /** * Get Invoices for a Date Range * @param this - The Invoice API * @param startDate - The start date * @param endDate - The end date * @returns The Invoices */ export declare function getInvoicesForDateRange(this: InvoiceAPI, startDate: Date, endDate: Date, options?: InvoiceOptions): Promise<SearchResponse<Invoice>>;