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) • 434 B
TypeScript
import type { Bill, BillOptions, SearchResponse } from '../../../../types/types.js';
import { BillAPI } from '../bill-api.js';
/**
* Get Bills for a Date Range
* @param this - The Bill API
* @param startDate - The start date
* @param endDate - The end date
* @returns The Bills
*/
export declare function getBillsForDateRange(this: BillAPI, startDate: Date, endDate: Date, options?: BillOptions): Promise<SearchResponse<Bill>>;