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) 288 B
import type { Bill } from '../../../../types/types.js'; import { BillAPI } from '../bill-api.js'; /** * Get Bill by ID * @param this - The Bill API * @param id - The ID of the bill * @returns The Bill */ export declare function getBillById(this: BillAPI, id: string): Promise<Bill>;