UNPKG

tax-invoice

Version:

发票SDK-提供完整的发票API开票接口

15 lines (14 loc) 242 B
/** * SDK配置类 */ export interface InvoiceConfig { baseUrl: string; appKey: string; appSecret: string; timeout?: number; debug?: boolean; } /** * 默认配置 */ export declare const DEFAULT_CONFIG: InvoiceConfig;