@base-framework/base 3.0.82 → 3.0.84
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.
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* @param {function} callBackFn
|
|
8
8
|
* @param {string} responseType
|
|
9
9
|
* @param {string} [method=POST]
|
|
10
|
-
* @param {boolean} async
|
|
10
|
+
* @param {boolean} [async]
|
|
11
11
|
*
|
|
12
12
|
* @overload
|
|
13
13
|
* @param {object} settings
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
*
|
|
24
24
|
* @returns {object} xhr object.
|
|
25
25
|
*/
|
|
26
|
-
export function Ajax(url: string, params: string, callBackFn: Function, responseType: string, method?: string, async
|
|
26
|
+
export function Ajax(url: string, params: string, callBackFn: Function, responseType: string, method?: string, async?: boolean): any;
|
|
27
27
|
/**
|
|
28
28
|
* This will make an xhr (ajax) request.
|
|
29
29
|
*
|
|
@@ -33,7 +33,7 @@ export function Ajax(url: string, params: string, callBackFn: Function, response
|
|
|
33
33
|
* @param {function} callBackFn
|
|
34
34
|
* @param {string} responseType
|
|
35
35
|
* @param {string} [method=POST]
|
|
36
|
-
* @param {boolean} async
|
|
36
|
+
* @param {boolean} [async]
|
|
37
37
|
*
|
|
38
38
|
* @overload
|
|
39
39
|
* @param {object} settings
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export { DataPubSub } from "./data-pub-sub.js";
|
|
2
1
|
/**
|
|
3
2
|
* DataBinder
|
|
4
3
|
*
|
|
@@ -173,3 +172,4 @@ export class DataBinder {
|
|
|
173
172
|
}
|
|
174
173
|
export const dataBinder: DataBinder;
|
|
175
174
|
import { ConnectionTracker } from './connection-tracker/connection-tracker.js';
|
|
175
|
+
import { DataPubSub } from './data-pub-sub.js';
|