view-base.js 215 B

123456789
  1. import { entityKind } from "../entity.js";
  2. import { View } from "../sql/sql.js";
  3. class PgViewBase extends View {
  4. static [entityKind] = "PgViewBase";
  5. }
  6. export {
  7. PgViewBase
  8. };
  9. //# sourceMappingURL=view-base.js.map