@base-framework/base 3.7.7 → 3.7.9
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
export function Atom(callBack: (arg0: any, arg1: any) =>
|
|
1
|
+
export function Atom(callBack: (arg0: any, arg1: any) => any): (...args: any[]) => any;
|
|
@@ -78,6 +78,14 @@ export class BasicData {
|
|
|
78
78
|
* @returns {void}
|
|
79
79
|
*/
|
|
80
80
|
onFlush(callBack: Function): void;
|
|
81
|
+
/**
|
|
82
|
+
* This will flush any pending batched publishes immediately.
|
|
83
|
+
* Useful for draining stale queued updates before setting up
|
|
84
|
+
* new subscribers, preventing duplicate notifications.
|
|
85
|
+
*
|
|
86
|
+
* @returns {void}
|
|
87
|
+
*/
|
|
88
|
+
flushPending(): void;
|
|
81
89
|
/**
|
|
82
90
|
* This will get the data id.
|
|
83
91
|
*
|