UNPKG

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.

13 lines (12 loc) 403 B
import { Invoice, InvoiceOptions } from '../../../../types/types.js'; import { InvoiceAPI } from '../invoice-api.js'; /** * Get Invoice by ID * @param this - The Invoice API * @param id - The ID of the invoice * @returns The Invoice */ export declare function getInvoiceById(this: InvoiceAPI, id: string, options?: InvoiceOptions): Promise<{ invoice: Invoice | null; intuitTID: string; }>;