blob: 167ed9429b1130cabf3dfa8b1c43ed05fb36ea59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import { getFromContainer } from "../container";
/**
* This metadata interface contains information for custom validators.
*/
var ConstraintMetadata = /** @class */ (function () {
// -------------------------------------------------------------------------
// Constructor
// -------------------------------------------------------------------------
function ConstraintMetadata(target, name, async) {
if (async === void 0) { async = false; }
this.target = target;
this.name = name;
this.async = async;
}
Object.defineProperty(ConstraintMetadata.prototype, "instance", {
// -------------------------------------------------------------------------
// Accessors
// -------------------------------------------------------------------------
/**
* Instance of the target custom validation class which performs validation.
*/
get: function () {
return getFromContainer(this.target);
},
enumerable: true,
configurable: true
});
return ConstraintMetadata;
}());
export { ConstraintMetadata };
//# sourceMappingURL=ConstraintMetadata.js.map
|