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.

11 lines (10 loc) 435 B
import { BillAPI } from '../bill-api.js'; import type { BillQueryBuilder } from '../bill-query-builder.js'; import type { Bill, SearchResponse } from '../../../../types/types.js'; /** * Raw Bill Query * @param this - The Bill API * @param queryBuilder - The query builder to use * @returns Custom query results */ export declare function rawBillQuery(this: BillAPI, queryBuilder: BillQueryBuilder): Promise<SearchResponse<Bill>>;