-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.d.ts
28 lines (23 loc) · 903 Bytes
/
index.d.ts
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
import * as Q from './QueryDescription'
export { default as Collection } from './Collection'
export { default as Database } from './Database'
export { default as Relation } from './Relation'
export { default as Model, associations } from './Model'
export { default as Query } from './Query'
export { tableName, columnName, appSchema, tableSchema } from './Schema'
export type { default as CollectionMap } from './Database/CollectionMap'
export type { LocalStorageKey } from './Database/LocalStorage'
export { localStorageKey } from './Database/LocalStorage'
export type { DatabaseAdapter } from './adapters/type'
export type { RawRecord, DirtyRaw } from './RawRecord'
export type { RecordId } from './Model'
export type {
TableName,
ColumnName,
ColumnType,
ColumnSchema,
TableSchema,
AppSchema,
} from './Schema'
export type { SchemaMigrations } from './Schema/migrations'
export { Q }