"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const spectral_core_1 = require("@stoplight/spectral-core"); const optionSchemas_1 = require("./optionSchemas"); exports.default = (0, spectral_core_1.createRulesetFunction)({ input: null, options: optionSchemas_1.optionSchemas.defined, }, function defined(input) { if (typeof input === 'undefined') { return [ { message: '#{{print("property")}}must be defined', }, ]; } return; }); //# sourceMappingURL=defined.js.map