UNPKG

type-dexie

Version:

class oriented schema building tool for dexie.js

24 lines (23 loc) 1.03 kB
import naming from './util/naming'; export * from './decorator/column'; export * from './decorator/compound'; export * from './decorator/entity'; export * from './decorator/join-column'; export * from './decorator/multi-valued'; export * from './decorator/primary'; export * from './decorator/unique'; export { naming }; export * from './util/entity-compiler'; export * from './util/schema-compiler'; export * from './error/compound-not-associated.error'; export * from './error/empty-entity.error'; export * from './error/insufficient-key-path.error'; export * from './error/missing-key-path.error'; export * from './error/missing-primary-key.error'; export * from './error/multiple-implementations.error'; export * from './error/must-be-camel-cased.error'; export * from './error/not-a-constructor.error'; export * from './error/not-an-entity.error'; export * from './error/primary-key-already-defined.error'; export * from './error/primary-key-not-associated.error'; export * from './error/type-dexie.error';