UNPKG

steady-api

Version:

Configurable REST API built with Express and TypeScript

17 lines 396 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Joi = require("joi"); /** * Paramter type: boolean * Used for: boolean */ const type = { name: "boolean", description: "A boolean (true/false) value", validator: function (param) { return Joi.boolean(); }, example: true }; exports.default = type; //# sourceMappingURL=boolean.js.map