UNPKG

@sahabaplus/moyasar

Version:

A comprehensive TypeScript SDK for integrating with the Moyasar payment gateway

6 lines 205 B
import { z } from "zod"; import { Currency } from "../types/index"; export const currencySchema = z .enum(Currency) .transform(val => val.toUpperCase()); //# sourceMappingURL=currency_schema.js.map