core/index.js

13 lines
450 B
JavaScript
Raw Normal View History

2019-05-20 16:02:21 +02:00
"use strict";
2020-05-26 04:23:41 +02:00
// Forcibly import this module before anything else, to make our cyclical dependency hack work (details are in ./src/compose-rules.js)
require("./src/compose-rules");
module.exports = {
2020-05-26 04:23:41 +02:00
validateArguments: require("./src/api/validate-arguments"),
validateOptions: require("./src/api/validate-options"),
validateValue: require("./src/api/validate-value"),
2019-05-20 16:02:21 +02:00
2020-05-26 04:23:41 +02:00
AggregrateValidationError: require("./src/aggregrate-validation-error")
};