UNPKG

facturapi

Version:

SDK oficial de Facturapi para Node.js y navegadores. Integra facturación electrónica en México (CFDI) de forma simple y obtén una perspectiva fiscal completa de tu operación, con búsquedas indexadas, envío de documentos y trazabilidad.

16 lines (15 loc) 447 B
import { WrapperClient } from '../wrapper'; export default class ComercioExteriorCatalogs { client: WrapperClient; constructor(client: WrapperClient); /** * Search tariff fractions for Comercio Exterior * @param {Object} params - Search parameters (q, page, limit) * @returns {Promise} */ searchTariffFractions(params: { q: string; page?: number; limit?: number; }): Promise<any>; }