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) • 379 B
TypeScript
import type { Estimate, EstimateOptions } from '../../../../types/types.js';
import { EstimateAPI } from '../estimate-api.js';
/**
* Get Estimate by ID
* @param this - The Estimate API
* @param id - The ID of the estimate
* @returns The Estimate
*/
export declare function getEstimateById(this: EstimateAPI, id: string, options?: EstimateOptions): Promise<Estimate | null>;