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) • 367 B
TypeScript
import type { Account, AccountOptions } from '../../../../types/types.js';
import { AccountAPI } from '../account-api.js';
/**
* Get Account by ID
* @param this - The Account API
* @param id - The ID of the account
* @returns The Account
*/
export declare function getAccountById(this: AccountAPI, id: string, options?: AccountOptions): Promise<Account | null>;