@brandup/ui-ajax 1.0.31 → 1.0.32
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/types.d.ts +7 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -76,7 +76,12 @@ declare const helpers_addQuery: typeof addQuery;
|
|
|
76
76
|
declare const helpers_createQuery: typeof createQuery;
|
|
77
77
|
declare const helpers_encodeForm: typeof encodeForm;
|
|
78
78
|
declare namespace helpers {
|
|
79
|
-
export {
|
|
79
|
+
export {
|
|
80
|
+
helpers_addQuery as addQuery,
|
|
81
|
+
helpers_createQuery as createQuery,
|
|
82
|
+
helpers_encodeForm as encodeForm,
|
|
83
|
+
};
|
|
80
84
|
}
|
|
81
85
|
|
|
82
|
-
export {
|
|
86
|
+
export { AjaxQueue, helpers as RequestHelper, ajaxRequest, request };
|
|
87
|
+
export type { AJAXMethod, AJAXReqestType, AjaxQueueOptions, AjaxRequest, AjaxResponse, ErrorDelegate, QueryData, ResponseDelegate, ResponseHeaders, ResponseType };
|