build and publish config

This commit is contained in:
2024-01-29 10:31:52 -06:00
parent 971a288794
commit 430cff39b8
11 changed files with 28 additions and 11 deletions

12
pkg/index.ts Normal file
View File

@@ -0,0 +1,12 @@
import { AssertUnique } from './actions/unique';
import { AssertRelation } from './actions/relation';
import { AssertConstrained } from './actions/constrained';
export type { AssertUniqueType } from "./actions/unique";
export type { AssertRelationType } from "./actions/relation";
export default class MongoAssert {
static unique = AssertUnique;
static relation = AssertRelation;
static constrained = AssertConstrained;
}