DIR : /home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core/checks.js

/home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core

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
//


koh5_pano



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer