UNPKG

488 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.Not = void 0;
4const attribute_service_1 = require("../model/column/attribute-service");
5/**
6 * Will not allow values, that match the string regex or real regex
7 */
8function Not(arg) {
9 return (target, propertyName) => (0, attribute_service_1.addAttributeOptions)(target, propertyName, {
10 validate: {
11 not: arg,
12 },
13 });
14}
15exports.Not = Not;
16//# sourceMappingURL=not.js.map
\No newline at end of file