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.

14 lines (13 loc) 498 B
import { CompanyInfoOptions } from '../../../../types/interfaces/options.js'; import { CompanyInfo } from '../../../../types/types.js'; import { CompanyInfoAPI } from '../company-info-api.js'; /** * Get Company Info * @param this - The Company Info API * @param options - The Search Options * @returns The Company Info */ export declare function getCompanyInfo(this: CompanyInfoAPI, options?: CompanyInfoOptions): Promise<{ companyInfo: CompanyInfo | undefined; intuitTID: string; }>;