forked from rocicorp/replicache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.ts
More file actions
13 lines (12 loc) · 662 Bytes
/
Copy pathmod.ts
File metadata and controls
13 lines (12 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
export {default} from './replicache.js';
export {TransactionClosedError} from './transaction-closed-error.js';
/** @deprecated Use the wasmModule parameter to Replicache constructor instead */
export {REPMWasmInvoker} from './repm-invoker.js';
export type {Mutator} from './replicache.js';
export type {ScanKey} from './scan-key.js';
/** @deprecated Use ScanKey instead */
export type {ScanKey as ScanId} from './scan-key.js';
export type {ScanBound} from './scan-bound.js';
export type {REPMInvoke, Invoker} from './repm-invoker.js';
export type {ReadTransaction, WriteTransaction} from './transactions.js';
export type {ScanResult} from './scan-iterator.js';