@cfworker/json-schema
Version:
A JSON schema validator that will run on Cloudflare workers. Supports drafts 4, 7, 2019-09, and 2020-12.
10 lines (9 loc) • 386 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutputFormat = void 0;
var OutputFormat;
(function (OutputFormat) {
OutputFormat[OutputFormat["Flag"] = 1] = "Flag";
OutputFormat[OutputFormat["Basic"] = 2] = "Basic";
OutputFormat[OutputFormat["Detailed"] = 4] = "Detailed";
})(OutputFormat || (exports.OutputFormat = OutputFormat = {}));
;