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) • 467 B
TypeScript
import type { Account, AccountOptions, SearchResponse } from '../../../../types/types.js';
import { AccountAPI } from '../account-api.js';
/**
* Get Accounts for a Date Range
* @param this - The Account API
* @param startDate - The start date
* @param endDate - The end date
* @returns The Accounts
*/
export declare function getAccountsForDateRange(this: AccountAPI, startDate: Date, endDate: Date, options?: AccountOptions): Promise<SearchResponse<Account>>;