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.

11 lines (10 loc) 446 B
import { CompanyInfoOptions } from '../../../../types/interfaces/options.js'; import type { 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>;