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
18 lines (17 loc) · 748 Bytes
/
Copy pathmod.ts
File metadata and controls
18 lines (17 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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';
/** @deprecated This type wasn't exact enough as described */
export type {Mutator} from './replicache.js';
export type {ReplicacheOptions} 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';