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.
9 lines (8 loc) • 354 B
TypeScript
import type { Estimate, EstimateOptions, SearchResponse } from '../../../../types/types.js';
import { EstimateAPI } from '../estimate-api.js';
/**
* Get All Estimates
* @param this - The Estimate API
* @returns The Estimates
*/
export declare function getAllEstimates(this: EstimateAPI, options?: EstimateOptions): Promise<SearchResponse<Estimate>>;