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) • 328 B
TypeScript
import { 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: Bill | null;
intuitTID: string;
}>;