UNPKG

rtech-struct

Version:

Rtech Platform Superstruct Entity

12 lines (9 loc) 206 B
const s = require('superstruct') const { PositiveNumber } = require('./number') const Goods = s.object({ value: PositiveNumber, currency: s.optional(s.string()) }) module.exports = { Goods: Goods }