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.
10 lines (9 loc) • 429 B
TypeScript
import { Invoice, type InvoiceOptions, type SearchResponse } from '../../../../types/types.js';
import { InvoiceAPI } from '../invoice-api.js';
/**
* Get Updated Invoices
* @param this - The Invoice API
* @param lastUpdatedDate - The last updated date
* @returns The Invoices
*/
export declare function getUpdatedInvoices(this: InvoiceAPI, lastUpdatedDate: Date, options?: InvoiceOptions): Promise<SearchResponse<Invoice>>;