forked from rocicorp/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.ts
More file actions
17 lines (17 loc) · 639 Bytes
/
mod.ts
File metadata and controls
17 lines (17 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export type {Expand} from '../../shared/src/expand.ts';
export type {PrimaryKey} from '../../zero-protocol/src/primary-key.ts';
export type {Schema} from '../../zero-schema/src/builder/schema-builder.ts';
export type {
RelationshipsSchema,
SchemaValue,
TableSchema,
} from '../../zero-schema/src/table-schema.ts';
export type {HumanReadable} from '../../zql/src/query/query.ts';
export type {ResultType} from '../../zql/src/query/typed-view.ts';
export {
useQuery,
type QueryResult,
type QueryResultDetails,
type UseQueryOptions,
} from './use-query.tsx';
export {createUseZero, useZero, ZeroProvider} from './use-zero.tsx';