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) 468 B
import { AccountAPI } from '../account-api.js'; import type { AccountQueryBuilder } from '../account-query-builder.js'; import type { Account, SearchResponse } from '../../../../types/types.js'; /** * Raw Account Query * @param this - The Account API * @param queryBuilder - The query builder to use * @returns Custom query results */ export declare function rawAccountQuery(this: AccountAPI, queryBuilder: AccountQueryBuilder): Promise<SearchResponse<Account>>;