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) • 435 B
TypeScript
import type { Estimate, EstimateOptions, SearchResponse } from '../../../../types/types.js';
import { EstimateAPI } from '../estimate-api.js';
/**
* Get Updated Estimates
* @param this - The Estimate API
* @param lastUpdatedDate - The last updated date
* @returns The Estimates
*/
export declare function getUpdatedEstimates(this: EstimateAPI, lastUpdatedDate: Date, options?: EstimateOptions): Promise<SearchResponse<Estimate>>;