| 1234567891011121314151617181920212223242526272829303132 |
- import { entityKind } from "../entity.js";
- class CheckBuilder {
- constructor(name, value) {
- this.name = name;
- this.value = value;
- }
- static [entityKind] = "GelCheckBuilder";
- brand;
- /** @internal */
- build(table) {
- return new Check(table, this);
- }
- }
- class Check {
- constructor(table, builder) {
- this.table = table;
- this.name = builder.name;
- this.value = builder.value;
- }
- static [entityKind] = "GelCheck";
- name;
- value;
- }
- function check(name, value) {
- return new CheckBuilder(name, value);
- }
- export {
- Check,
- CheckBuilder,
- check
- };
- //# sourceMappingURL=checks.js.map
|