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) • 501 B
TypeScript
import type { CreditMemo, CreditMemoOptions, SearchResponse } from '../../../../types/types.js';
import { CreditMemoAPI } from '../credit-memo-api.js';
/**
* Get CreditMemos for a Date Range
* @param this - The CreditMemo API
* @param startDate - The start date
* @param endDate - The end date
* @returns The CreditMemos
*/
export declare function getCreditMemosForDateRange(this: CreditMemoAPI, startDate: Date, endDate: Date, options?: CreditMemoOptions): Promise<SearchResponse<CreditMemo>>;