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.

10 lines (9 loc) 191 B
// Email Address Interface export interface EmailAddress { /** * Email address following RFC 822 standard * @max 100 characters * @example "user@example.com" */ Address?: string; }