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.

10 lines (9 loc) 362 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 | null>;