@jackiemacklein/nettz-utils
Version:
Serviços de imagem, e-mail, códigos de barras, utilitários numéricos e componentes React para apps Node.js com TypeScript
12 lines (11 loc) • 779 B
TypeScript
/**
* @author Jackiê Macklein
* @company Onside tecnologia/Nettz
* @copyright Todos direitos reservados.
* @description Integração com API SuperTEF (maquininha / POS). Ver https://supertef.apidog.io/
*/
export { SuperTefApiError } from "./errors";
export { createSuperTefClient } from "./client";
export type { SuperTefClient } from "./client";
export { SUPERTEF_DEFAULT_BASE_URL, SuperTefTransactionType, SuperTefPaymentStatus, } from "./types";
export type { SuperTefClientConfig, SuperTefInstallmentType, SuperTefListPosParams, SuperTefListPosResponse, SuperTefPaymentData, SuperTefPaymentDetail, SuperTefPaymentOrder, SuperTefPaymentStatusCode, SuperTefPollPaymentOptions, SuperTefPosRecord, SuperTefRequestPaymentBody, SuperTefTransactionTypeCode, } from "./types";