We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d889986 commit 00b1921Copy full SHA for 00b1921
packages/common/src/client/sync/bucket/OplogEntry.ts
@@ -1,6 +1,9 @@
1
import { OpId } from './CrudEntry.js';
2
import { OpType, OpTypeJSON } from './OpType.js';
3
4
+/**
5
+ * @internal
6
+ */
7
export interface OplogEntryJSON {
8
checksum: number;
9
data?: string;
@@ -11,6 +14,9 @@ export interface OplogEntryJSON {
11
14
subkey?: string;
12
15
}
13
16
17
18
19
20
export class OplogEntry {
21
static fromRow(row: OplogEntryJSON) {
22
return new OplogEntry(
0 commit comments