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) • 478 B
TypeScript
import type { Estimate, EstimateOptions, SearchResponse } from '../../../../types/types.js';
import { EstimateAPI } from '../estimate-api.js';
/**
* Get Estimates for a Date Range
* @param this - The Estimate API
* @param startDate - The start date
* @param endDate - The end date
* @returns The Estimates
*/
export declare function getEstimatesForDateRange(this: EstimateAPI, startDate: Date, endDate: Date, options?: EstimateOptions): Promise<SearchResponse<Estimate>>;