mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-19 16:12:14 +11:00
22 lines
No EOL
344 B
JavaScript
22 lines
No EOL
344 B
JavaScript
const {
|
|
buildCheckFunction,
|
|
check,
|
|
body,
|
|
cookie,
|
|
header,
|
|
param,
|
|
query
|
|
} = require('./validation-chain-builders');
|
|
|
|
module.exports = {
|
|
buildCheckFunction,
|
|
check,
|
|
body,
|
|
cookie,
|
|
header,
|
|
param,
|
|
query,
|
|
checkSchema: require('./schema'),
|
|
oneOf: require('./one-of'),
|
|
validationResult: require('./validation-result')
|
|
}; |