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.

9 lines (8 loc) 377 B
import type { CreditMemo, CreditMemoOptions, SearchResponse } from '../../../../types/types.js'; import { CreditMemoAPI } from '../credit-memo-api.js'; /** * Get All CreditMemos * @param this - The CreditMemo API * @returns The CreditMemos */ export declare function getAllCreditMemos(this: CreditMemoAPI, options?: CreditMemoOptions): Promise<SearchResponse<CreditMemo>>;