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.

10 lines (9 loc) 391 B
import type { Bill, BillOptions, SearchResponse } from '../../../../types/types.js'; import { BillAPI } from '../bill-api.js'; /** * Get Updated Bills * @param this - The Bill API * @param lastUpdatedDate - The last updated date * @returns The Bills */ export declare function getUpdatedBills(this: BillAPI, lastUpdatedDate: Date, options?: BillOptions): Promise<SearchResponse<Bill>>;