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
16 lines (15 loc) · 630 Bytes
/
Copy pathmod.ts
File metadata and controls
16 lines (15 loc) · 630 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 {REPMInvoke, Invoker} from './repm-invoker.js';
export type {ReadTransaction, WriteTransaction} from './transactions.js';
export type {ScanResult} from './scan-iterator.js';
export type {
KeyTypeForScanOptions,
ScanIndexOptions,
ScanNoIndexOptions,
ScanOptionIndexedStartKey,
ScanOptions,
} from './scan-options.js';