Skip to content

Commit

Permalink
feat: exports "PRIMARY_KEY" and "ENTITY_TYPE" symbols (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
kettanaito committed Feb 5, 2022
1 parent 7a06f1c commit d32f154
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
export { factory } from './factory'
export { primaryKey } from './primaryKey'
export { nullable } from './nullable';
export { nullable } from './nullable'
export { oneOf } from './relations/oneOf'
export { manyOf } from './relations/manyOf'
export { drop } from './db/drop'
export { identity } from './utils/identity'

/* Types */
export { PRIMARY_KEY, ENTITY_TYPE } from './glossary'

0 comments on commit d32f154

Please sign in to comment.