@openreplay/tracker 18.0.16 → 18.0.17-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/entry.js +41 -14
- package/dist/cjs/entry.js.map +1 -1
- package/dist/cjs/index.js +41 -14
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/main/app/nodes/maintainer.d.ts +2 -0
- package/dist/lib/entry.js +41 -14
- package/dist/lib/entry.js.map +1 -1
- package/dist/lib/index.js +41 -14
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/main/app/nodes/maintainer.d.ts +2 -0
- package/dist/types/main/app/nodes/maintainer.d.ts +2 -0
- package/package.json +1 -1
|
@@ -20,6 +20,8 @@ declare class Maintainer {
|
|
|
20
20
|
private readonly nodes;
|
|
21
21
|
private readonly unregisterNode;
|
|
22
22
|
private interval;
|
|
23
|
+
private batchTimeout;
|
|
24
|
+
private isScanning;
|
|
23
25
|
private readonly options;
|
|
24
26
|
constructor(nodes: Map<number, Node | void>, unregisterNode: (node: Node) => void, options?: Partial<MaintainerOptions>);
|
|
25
27
|
start: () => void;
|
|
@@ -20,6 +20,8 @@ declare class Maintainer {
|
|
|
20
20
|
private readonly nodes;
|
|
21
21
|
private readonly unregisterNode;
|
|
22
22
|
private interval;
|
|
23
|
+
private batchTimeout;
|
|
24
|
+
private isScanning;
|
|
23
25
|
private readonly options;
|
|
24
26
|
constructor(nodes: Map<number, Node | void>, unregisterNode: (node: Node) => void, options?: Partial<MaintainerOptions>);
|
|
25
27
|
start: () => void;
|