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) • 424 B
TypeScript
import type { Account, AccountOptions, SearchResponse } from '../../../../types/types.js';
import { AccountAPI } from '../account-api.js';
/**
* Get Updated Accounts
* @param this - The Account API
* @param lastUpdatedDate - The last updated date
* @returns The Accounts
*/
export declare function getUpdatedAccounts(this: AccountAPI, lastUpdatedDate: Date, options?: AccountOptions): Promise<SearchResponse<Account>>;