-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
32 lines (28 loc) · 978 Bytes
/
index.ts
File metadata and controls
32 lines (28 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* @secjs/orm
*
* (c) João Lenon <lenon@secjs.com.br>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import 'reflect-metadata'
// Decorators
export * from './src/Decorators/Column'
export * from './src/Decorators/HasOne'
export * from './src/Decorators/HasMany'
export * from './src/Decorators/BelongsTo'
export * from './src/Decorators/ManyToMany'
// Contracts
export * from './src/Contracts/ColumnOptions'
export * from './src/Contracts/ColumnContract'
export * from './src/Contracts/HasOneOptions'
export * from './src/Contracts/HasOneContract'
export * from './src/Contracts/HasManyOptions'
export * from './src/Contracts/HasManyContract'
export * from './src/Contracts/BelongsToOptions'
export * from './src/Contracts/BelongsToContract'
export * from './src/Contracts/ManyToManyOptions'
export * from './src/Contracts/ManyToManyContract'
// Model
export * from './src/Model'