UNPKG

@practica/create-node-app

Version:

Create Node.js app that is packed with best practices AND strive for simplicity

12 lines (11 loc) 419 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.orderSchema = void 0; const typebox_1 = require("@sinclair/typebox"); exports.orderSchema = typebox_1.Type.Object({ deliveryAddress: typebox_1.Type.String(), paymentTermsInDays: typebox_1.Type.Number(), countryId: typebox_1.Type.Number(), productId: typebox_1.Type.Integer(), userId: typebox_1.Type.Integer(), });