@bbn/bbn 1.0.13 → 1.0.15
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/bundle.d.ts +315 -548
- package/dist/bundle.js +2408 -2414
- package/dist/fn/_addLoader.js +3 -15
- package/dist/fn/_compareValues.js +2 -2
- package/dist/fn/_deleteLoader.js +0 -1
- package/dist/fn/abortURL.js +0 -1
- package/dist/fn/addColors.js +3 -4
- package/dist/fn/ajax.js +0 -1
- package/dist/fn/autoExtend.js +0 -1
- package/dist/fn/calendar.js +0 -1
- package/dist/fn/callback.js +0 -1
- package/dist/fn/checkPropsDetails.js +0 -1
- package/dist/fn/checkType.js +0 -1
- package/dist/fn/deleteProp.js +0 -1
- package/dist/fn/extend.js +0 -1
- package/dist/fn/fdatetime.js +0 -1
- package/dist/fn/format.js +0 -1
- package/dist/fn/getEventData.js +0 -1
- package/dist/fn/getLoader.d.ts +1 -1
- package/dist/fn/getLoader.js +0 -1
- package/dist/fn/getProp.js +0 -1
- package/dist/fn/getScrollBarSize.d.ts +1 -1
- package/dist/fn/getScrollBarSize.js +0 -1
- package/dist/fn/getTimeoff.js +0 -1
- package/dist/fn/init.js +2 -3
- package/dist/fn/isActiveInterface.js +0 -1
- package/dist/fn/isCp.js +0 -1
- package/dist/fn/isHostname.js +1 -2
- package/dist/fn/isIP.js +1 -2
- package/dist/fn/isURL.js +1 -2
- package/dist/fn/isVue.js +0 -1
- package/dist/fn/link.js +0 -1
- package/dist/fn/log.js +0 -1
- package/dist/fn/money.js +0 -1
- package/dist/fn/removeAccents.js +0 -1
- package/dist/fn/resize.js +0 -1
- package/dist/fn/search.js +0 -1
- package/dist/fn/setNavigationVars.js +0 -1
- package/dist/fn/setProp.js +0 -1
- package/dist/fn/setProperty.js +0 -1
- package/dist/fn/shorten.js +1 -2
- package/dist/fn/stat.js +1 -2
- package/dist/fn/submit.js +0 -1
- package/dist/fn/substr.js +0 -1
- package/dist/fn/translate.js +0 -1
- package/dist/fn/treatAjaxArguments.js +0 -1
- package/dist/fn/upload.js +0 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/bundle.d.ts
CHANGED
|
@@ -1,19 +1,156 @@
|
|
|
1
|
+
declare module "fn/isString" {
|
|
2
|
+
const isString: () => boolean;
|
|
3
|
+
export { isString };
|
|
4
|
+
}
|
|
5
|
+
declare module "fn/isInt" {
|
|
6
|
+
const isInt: () => boolean;
|
|
7
|
+
export { isInt };
|
|
8
|
+
}
|
|
9
|
+
declare module "fn/isFunction" {
|
|
10
|
+
const isFunction: () => boolean;
|
|
11
|
+
export { isFunction };
|
|
12
|
+
}
|
|
13
|
+
declare module "fn/log" {
|
|
14
|
+
const log: (...args: any[]) => any;
|
|
15
|
+
export { log };
|
|
16
|
+
}
|
|
17
|
+
declare module "fn/substr" {
|
|
18
|
+
const substr: (str: any, from: any, length: any) => any;
|
|
19
|
+
export { substr };
|
|
20
|
+
}
|
|
1
21
|
declare module "fn/_addLoader" {
|
|
2
22
|
const _addLoader: (requestId: any, prom: any, source: any) => number;
|
|
3
23
|
export { _addLoader };
|
|
4
24
|
}
|
|
25
|
+
declare module "fn/getProperty" {
|
|
26
|
+
const getProperty: (obj: any, prop: any) => any;
|
|
27
|
+
export { getProperty };
|
|
28
|
+
}
|
|
29
|
+
declare module "fn/removeAccents" {
|
|
30
|
+
const removeAccents: (st: any) => any;
|
|
31
|
+
export { removeAccents };
|
|
32
|
+
}
|
|
33
|
+
declare module "fn/isDate" {
|
|
34
|
+
const isDate: () => boolean;
|
|
35
|
+
export { isDate };
|
|
36
|
+
}
|
|
5
37
|
declare module "fn/_compareValues" {
|
|
6
38
|
const _compareValues: (a: any, b: any, prop: any, dir?: string) => 0 | 1 | -1;
|
|
7
39
|
export { _compareValues };
|
|
8
40
|
}
|
|
41
|
+
declare module "fn/isIterable" {
|
|
42
|
+
const isIterable: (v: any) => boolean;
|
|
43
|
+
export { isIterable };
|
|
44
|
+
}
|
|
45
|
+
declare module "fn/isArray" {
|
|
46
|
+
const isArray: () => boolean;
|
|
47
|
+
export { isArray };
|
|
48
|
+
}
|
|
49
|
+
declare module "fn/isNumber" {
|
|
50
|
+
const isNumber: () => boolean;
|
|
51
|
+
export { isNumber };
|
|
52
|
+
}
|
|
53
|
+
declare module "fn/removePrivateProp" {
|
|
54
|
+
import { removePrivateProp } from "fn/removePrivateProp";
|
|
55
|
+
const removePrivateProp: (obj: any, deep: any) => boolean;
|
|
56
|
+
export { removePrivateProp };
|
|
57
|
+
}
|
|
58
|
+
declare module "fn/iterate" {
|
|
59
|
+
const iterate: (obj: any, fn: any, noPrivate: any, reverse: any) => any;
|
|
60
|
+
export { iterate };
|
|
61
|
+
}
|
|
62
|
+
declare module "fn/each" {
|
|
63
|
+
const each: (arr: any, fn: any) => any;
|
|
64
|
+
export { each };
|
|
65
|
+
}
|
|
66
|
+
declare module "fn/numProperties" {
|
|
67
|
+
const numProperties: (obj: any) => number;
|
|
68
|
+
export { numProperties };
|
|
69
|
+
}
|
|
70
|
+
declare module "fn/isEmpty" {
|
|
71
|
+
const isEmpty: (obj: any) => boolean;
|
|
72
|
+
export { isEmpty };
|
|
73
|
+
}
|
|
74
|
+
declare module "fn/isNull" {
|
|
75
|
+
const isNull: () => boolean;
|
|
76
|
+
export { isNull };
|
|
77
|
+
}
|
|
78
|
+
declare module "fn/isObject" {
|
|
79
|
+
const isObject: () => boolean;
|
|
80
|
+
export { isObject };
|
|
81
|
+
}
|
|
82
|
+
declare module "fn/isDom" {
|
|
83
|
+
const isDom: () => boolean;
|
|
84
|
+
export { isDom };
|
|
85
|
+
}
|
|
86
|
+
declare module "fn/isCp" {
|
|
87
|
+
const isCp: () => boolean;
|
|
88
|
+
export { isCp };
|
|
89
|
+
}
|
|
90
|
+
declare module "fn/circularReplacer" {
|
|
91
|
+
const circularReplacer: () => (key: any, value: any) => any;
|
|
92
|
+
export { circularReplacer };
|
|
93
|
+
}
|
|
94
|
+
declare module "fn/simpleHash1" {
|
|
95
|
+
const simpleHash1: (str: any) => number;
|
|
96
|
+
export { simpleHash1 };
|
|
97
|
+
}
|
|
98
|
+
declare module "fn/simpleHash2" {
|
|
99
|
+
const simpleHash2: (str: any) => number;
|
|
100
|
+
export { simpleHash2 };
|
|
101
|
+
}
|
|
102
|
+
declare module "fn/simpleHash" {
|
|
103
|
+
const simpleHash: (str: any) => any;
|
|
104
|
+
export { simpleHash };
|
|
105
|
+
}
|
|
106
|
+
declare module "fn/hash" {
|
|
107
|
+
const hash: (obj: any) => any;
|
|
108
|
+
export { hash };
|
|
109
|
+
}
|
|
110
|
+
declare module "fn/isSame" {
|
|
111
|
+
import { isSame } from "fn/isSame";
|
|
112
|
+
const isSame: (obj1: any, obj2: any, done: any) => boolean;
|
|
113
|
+
export { isSame };
|
|
114
|
+
}
|
|
115
|
+
declare module "fn/compare" {
|
|
116
|
+
const compare: (v1: any, v2: any, operator: any) => boolean;
|
|
117
|
+
export { compare };
|
|
118
|
+
}
|
|
119
|
+
declare module "fn/compareConditions" {
|
|
120
|
+
import { compareConditions } from "fn/compareConditions";
|
|
121
|
+
const compareConditions: (data: any, filter: any) => boolean;
|
|
122
|
+
export { compareConditions };
|
|
123
|
+
}
|
|
124
|
+
declare module "fn/filterToConditions" {
|
|
125
|
+
import { filterToConditions } from "fn/filterToConditions";
|
|
126
|
+
const filterToConditions: (filter: any, operator: any) => any;
|
|
127
|
+
export { filterToConditions };
|
|
128
|
+
}
|
|
129
|
+
declare module "fn/search" {
|
|
130
|
+
const search: (arr: any, prop: any, val: any, operator: any, startFrom: any) => any;
|
|
131
|
+
export { search };
|
|
132
|
+
}
|
|
133
|
+
declare module "fn/getRow" {
|
|
134
|
+
const getRow: (arr: any, prop: any, val: any, operator: any) => any;
|
|
135
|
+
export { getRow };
|
|
136
|
+
}
|
|
9
137
|
declare module "fn/_deleteLoader" {
|
|
10
138
|
const _deleteLoader: (requestId: any, res: any, isAbort: any) => boolean;
|
|
11
139
|
export { _deleteLoader };
|
|
12
140
|
}
|
|
141
|
+
declare module "fn/getLoader" {
|
|
142
|
+
const getLoader: (requestId: any) => false | object;
|
|
143
|
+
export { getLoader };
|
|
144
|
+
}
|
|
13
145
|
declare module "fn/abort" {
|
|
14
146
|
const abort: (requestId: any) => void;
|
|
15
147
|
export { abort };
|
|
16
148
|
}
|
|
149
|
+
declare module "fn/filter" {
|
|
150
|
+
import { filter } from "fn/filter";
|
|
151
|
+
const filter: (arr: any, prop: any, val: any, operator: any) => any;
|
|
152
|
+
export { filter };
|
|
153
|
+
}
|
|
17
154
|
declare module "fn/abortURL" {
|
|
18
155
|
const abortURL: (url: any) => void;
|
|
19
156
|
export { abortURL };
|
|
@@ -23,6 +160,7 @@ declare module "fn/addColors" {
|
|
|
23
160
|
export { addColors };
|
|
24
161
|
}
|
|
25
162
|
declare module "fn/addInputs" {
|
|
163
|
+
import { addInputs } from "fn/addInputs";
|
|
26
164
|
const addInputs: (form: any, params: any, prefix: any) => void;
|
|
27
165
|
export { addInputs };
|
|
28
166
|
}
|
|
@@ -30,18 +168,55 @@ declare module "fn/addStyle" {
|
|
|
30
168
|
const addStyle: (ele: any, o: any) => void;
|
|
31
169
|
export { addStyle };
|
|
32
170
|
}
|
|
33
|
-
declare module "fn/adjustHeight" {
|
|
34
|
-
const adjustHeight: () => any;
|
|
35
|
-
export { adjustHeight };
|
|
36
|
-
}
|
|
37
171
|
declare module "fn/adjustSize" {
|
|
38
172
|
const adjustSize: (type: any, eles: any) => void;
|
|
39
173
|
export { adjustSize };
|
|
40
174
|
}
|
|
175
|
+
declare module "fn/adjustHeight" {
|
|
176
|
+
const adjustHeight: () => void;
|
|
177
|
+
export { adjustHeight };
|
|
178
|
+
}
|
|
41
179
|
declare module "fn/adjustWidth" {
|
|
42
|
-
const adjustWidth: () =>
|
|
180
|
+
const adjustWidth: () => void;
|
|
43
181
|
export { adjustWidth };
|
|
44
182
|
}
|
|
183
|
+
declare module "fn/escapeRegExp" {
|
|
184
|
+
const escapeRegExp: (str: any) => any;
|
|
185
|
+
export { escapeRegExp };
|
|
186
|
+
}
|
|
187
|
+
declare module "fn/replaceAll" {
|
|
188
|
+
const replaceAll: (find: any, replace: any, str: any, flags?: string) => any;
|
|
189
|
+
export { replaceAll };
|
|
190
|
+
}
|
|
191
|
+
declare module "fn/md5" {
|
|
192
|
+
const md5: (st: any) => string;
|
|
193
|
+
export { md5 };
|
|
194
|
+
}
|
|
195
|
+
declare module "fn/getRequestId" {
|
|
196
|
+
const getRequestId: (url: any, data: any, datatype: any) => string;
|
|
197
|
+
export { getRequestId };
|
|
198
|
+
}
|
|
199
|
+
declare module "fn/extend" {
|
|
200
|
+
import { extend } from "fn/extend";
|
|
201
|
+
const extend: () => any;
|
|
202
|
+
export { extend };
|
|
203
|
+
}
|
|
204
|
+
declare module "fn/defaultEndLoadingFunction" {
|
|
205
|
+
const defaultEndLoadingFunction: (url: any, data: any, res: any) => boolean;
|
|
206
|
+
export { defaultEndLoadingFunction };
|
|
207
|
+
}
|
|
208
|
+
declare module "fn/defaultAjaxErrorFunction" {
|
|
209
|
+
const defaultAjaxErrorFunction: (jqXHR: any, textStatus: any, errorThrown: any) => void;
|
|
210
|
+
export { defaultAjaxErrorFunction };
|
|
211
|
+
}
|
|
212
|
+
declare module "fn/defaultAjaxAbortFunction" {
|
|
213
|
+
const defaultAjaxAbortFunction: (message: any, url: any) => void;
|
|
214
|
+
export { defaultAjaxAbortFunction };
|
|
215
|
+
}
|
|
216
|
+
declare module "fn/defaultStartLoadingFunction" {
|
|
217
|
+
const defaultStartLoadingFunction: (url: any, data: any) => boolean;
|
|
218
|
+
export { defaultStartLoadingFunction };
|
|
219
|
+
}
|
|
45
220
|
declare module "fn/ajax" {
|
|
46
221
|
const ajax: (url: any, datatype: any, data: any, success: any, failure: any, abort: any) => any;
|
|
47
222
|
export { ajax };
|
|
@@ -55,7 +230,7 @@ declare module "fn/analyzeFunction" {
|
|
|
55
230
|
hasFunction: boolean;
|
|
56
231
|
name: any;
|
|
57
232
|
isAsync: boolean;
|
|
58
|
-
hash:
|
|
233
|
+
hash: string;
|
|
59
234
|
};
|
|
60
235
|
export { analyzeFunction };
|
|
61
236
|
}
|
|
@@ -83,10 +258,38 @@ declare module "fn/br2nl" {
|
|
|
83
258
|
const br2nl: (st: any) => any;
|
|
84
259
|
export { br2nl };
|
|
85
260
|
}
|
|
261
|
+
declare module "fn/date" {
|
|
262
|
+
const date: (v: any) => any;
|
|
263
|
+
export { date };
|
|
264
|
+
}
|
|
265
|
+
declare module "fn/fdatetime" {
|
|
266
|
+
const fdatetime: (d: any, wrong_result: any) => any;
|
|
267
|
+
export { fdatetime };
|
|
268
|
+
}
|
|
269
|
+
declare module "fn/fdate" {
|
|
270
|
+
const fdate: (d: any, wrong_result: any) => any;
|
|
271
|
+
export { fdate };
|
|
272
|
+
}
|
|
86
273
|
declare module "fn/calendar" {
|
|
87
274
|
const calendar: (d: any, wrong_result: any) => any;
|
|
88
275
|
export { calendar };
|
|
89
276
|
}
|
|
277
|
+
declare module "fn/error" {
|
|
278
|
+
const error: (errorMsg: any) => never;
|
|
279
|
+
export { error };
|
|
280
|
+
}
|
|
281
|
+
declare module "fn/defaultLinkFunction" {
|
|
282
|
+
const defaultLinkFunction: (responseObj: any, ele: any) => boolean;
|
|
283
|
+
export { defaultLinkFunction };
|
|
284
|
+
}
|
|
285
|
+
declare module "fn/defaultPostLinkFunction" {
|
|
286
|
+
const defaultPostLinkFunction: (r: any) => boolean;
|
|
287
|
+
export { defaultPostLinkFunction };
|
|
288
|
+
}
|
|
289
|
+
declare module "fn/defaultAlertFunction" {
|
|
290
|
+
const defaultAlertFunction: (text: any, title: any) => void;
|
|
291
|
+
export { defaultAlertFunction };
|
|
292
|
+
}
|
|
90
293
|
declare module "fn/callback" {
|
|
91
294
|
const callback: (url: any, res: any, fn: any, fn2: any, ele: any) => boolean;
|
|
92
295
|
export { callback };
|
|
@@ -107,10 +310,6 @@ declare module "fn/center" {
|
|
|
107
310
|
const center: (ele: any) => any;
|
|
108
311
|
export { center };
|
|
109
312
|
}
|
|
110
|
-
declare module "fn/checkProps" {
|
|
111
|
-
const checkProps: (obj: any, props: any, checkEmpty: any) => any;
|
|
112
|
-
export { checkProps };
|
|
113
|
-
}
|
|
114
313
|
declare module "fn/checkPropsDetails" {
|
|
115
314
|
const checkPropsDetails: (obj: any, props: any, checkEmpty: any) => {
|
|
116
315
|
error: boolean;
|
|
@@ -118,19 +317,24 @@ declare module "fn/checkPropsDetails" {
|
|
|
118
317
|
};
|
|
119
318
|
export { checkPropsDetails };
|
|
120
319
|
}
|
|
320
|
+
declare module "fn/checkProps" {
|
|
321
|
+
const checkProps: (obj: any, props: any, checkEmpty: any) => boolean;
|
|
322
|
+
export { checkProps };
|
|
323
|
+
}
|
|
121
324
|
declare module "fn/checkPropsOrDie" {
|
|
122
325
|
const checkPropsOrDie: (obj: any, props: any, checkEmpty: any) => boolean;
|
|
123
326
|
export { checkPropsOrDie };
|
|
124
327
|
}
|
|
328
|
+
declare module "fn/correctCase" {
|
|
329
|
+
const correctCase: (str: any) => any;
|
|
330
|
+
export { correctCase };
|
|
331
|
+
}
|
|
125
332
|
declare module "fn/checkType" {
|
|
126
333
|
const checkType: (value: any, type: any, msg: any, ...logs: any[]) => void;
|
|
127
334
|
export { checkType };
|
|
128
335
|
}
|
|
129
|
-
declare module "fn/circularReplacer" {
|
|
130
|
-
const circularReplacer: () => (key: any, value: any) => any;
|
|
131
|
-
export { circularReplacer };
|
|
132
|
-
}
|
|
133
336
|
declare module "fn/clone" {
|
|
337
|
+
import { clone } from "fn/clone";
|
|
134
338
|
const clone: (obj: any) => any;
|
|
135
339
|
export { clone };
|
|
136
340
|
}
|
|
@@ -138,22 +342,10 @@ declare module "fn/colorToHex" {
|
|
|
138
342
|
const colorToHex: (color: any) => string | CanvasGradient | CanvasPattern;
|
|
139
343
|
export { colorToHex };
|
|
140
344
|
}
|
|
141
|
-
declare module "fn/compare" {
|
|
142
|
-
const compare: (v1: any, v2: any, operator: any) => any;
|
|
143
|
-
export { compare };
|
|
144
|
-
}
|
|
145
|
-
declare module "fn/compareConditions" {
|
|
146
|
-
const compareConditions: (data: any, filter: any) => boolean;
|
|
147
|
-
export { compareConditions };
|
|
148
|
-
}
|
|
149
345
|
declare module "fn/copy" {
|
|
150
346
|
const copy: (st: any) => Promise<unknown>;
|
|
151
347
|
export { copy };
|
|
152
348
|
}
|
|
153
|
-
declare module "fn/correctCase" {
|
|
154
|
-
const correctCase: (str: any) => any;
|
|
155
|
-
export { correctCase };
|
|
156
|
-
}
|
|
157
349
|
declare module "fn/count" {
|
|
158
350
|
const count: (arr: any, prop: any, val: any, operator: any) => any;
|
|
159
351
|
export { count };
|
|
@@ -170,10 +362,6 @@ declare module "fn/cssExists" {
|
|
|
170
362
|
const cssExists: (f: any) => boolean;
|
|
171
363
|
export { cssExists };
|
|
172
364
|
}
|
|
173
|
-
declare module "fn/date" {
|
|
174
|
-
const date: (v: any) => any;
|
|
175
|
-
export { date };
|
|
176
|
-
}
|
|
177
365
|
declare module "fn/dateSQL" {
|
|
178
366
|
const dateSQL: (v: any, dayOnly: any) => any;
|
|
179
367
|
export { dateSQL };
|
|
@@ -183,29 +371,14 @@ declare module "fn/daysInMonth" {
|
|
|
183
371
|
export { daysInMonth };
|
|
184
372
|
}
|
|
185
373
|
declare module "fn/deepPath" {
|
|
374
|
+
import { deepPath } from "fn/deepPath";
|
|
186
375
|
const deepPath: (arr: any, filter: any, deepProperty: any, res?: any[]) => false | any[];
|
|
187
376
|
export { deepPath };
|
|
188
377
|
}
|
|
189
|
-
declare module "fn/defaultAjaxAbortFunction" {
|
|
190
|
-
const defaultAjaxAbortFunction: (message: any, url: any) => void;
|
|
191
|
-
export { defaultAjaxAbortFunction };
|
|
192
|
-
}
|
|
193
|
-
declare module "fn/defaultAjaxErrorFunction" {
|
|
194
|
-
const defaultAjaxErrorFunction: (jqXHR: any, textStatus: any, errorThrown: any) => void;
|
|
195
|
-
export { defaultAjaxErrorFunction };
|
|
196
|
-
}
|
|
197
|
-
declare module "fn/defaultAlertFunction" {
|
|
198
|
-
const defaultAlertFunction: (text: any, title: any) => void;
|
|
199
|
-
export { defaultAlertFunction };
|
|
200
|
-
}
|
|
201
378
|
declare module "fn/defaultConfirmFunction" {
|
|
202
379
|
const defaultConfirmFunction: (text: any, yesFn: any, noFn: any) => void;
|
|
203
380
|
export { defaultConfirmFunction };
|
|
204
381
|
}
|
|
205
|
-
declare module "fn/defaultEndLoadingFunction" {
|
|
206
|
-
const defaultEndLoadingFunction: (url: any, data: any, res: any) => boolean;
|
|
207
|
-
export { defaultEndLoadingFunction };
|
|
208
|
-
}
|
|
209
382
|
declare module "fn/defaultErrorFunction" {
|
|
210
383
|
const defaultErrorFunction: (message: any) => void;
|
|
211
384
|
export { defaultErrorFunction };
|
|
@@ -214,14 +387,6 @@ declare module "fn/defaultHistoryFunction" {
|
|
|
214
387
|
const defaultHistoryFunction: (obj: any) => boolean;
|
|
215
388
|
export { defaultHistoryFunction };
|
|
216
389
|
}
|
|
217
|
-
declare module "fn/defaultLinkFunction" {
|
|
218
|
-
const defaultLinkFunction: (responseObj: any, ele: any) => boolean;
|
|
219
|
-
export { defaultLinkFunction };
|
|
220
|
-
}
|
|
221
|
-
declare module "fn/defaultPostLinkFunction" {
|
|
222
|
-
const defaultPostLinkFunction: (r: any) => boolean;
|
|
223
|
-
export { defaultPostLinkFunction };
|
|
224
|
-
}
|
|
225
390
|
declare module "fn/defaultPreLinkFunction" {
|
|
226
391
|
const defaultPreLinkFunction: (url: any, ele: any) => boolean;
|
|
227
392
|
export { defaultPreLinkFunction };
|
|
@@ -230,15 +395,16 @@ declare module "fn/defaultResizeFunction" {
|
|
|
230
395
|
const defaultResizeFunction: () => boolean;
|
|
231
396
|
export { defaultResizeFunction };
|
|
232
397
|
}
|
|
233
|
-
declare module "fn/defaultStartLoadingFunction" {
|
|
234
|
-
const defaultStartLoadingFunction: (url: any, data: any) => boolean;
|
|
235
|
-
export { defaultStartLoadingFunction };
|
|
236
|
-
}
|
|
237
398
|
declare module "fn/deleteProp" {
|
|
238
399
|
const deleteProp: (obj: any, prop: any) => void;
|
|
239
400
|
export { deleteProp };
|
|
240
401
|
}
|
|
402
|
+
declare module "fn/isValue" {
|
|
403
|
+
const isValue: () => boolean;
|
|
404
|
+
export { isValue };
|
|
405
|
+
}
|
|
241
406
|
declare module "fn/diffObj" {
|
|
407
|
+
import { diffObj } from "fn/diffObj";
|
|
242
408
|
const diffObj: (obj1: any, obj2: any, unchanged: any, notRoot: any) => any;
|
|
243
409
|
export { diffObj };
|
|
244
410
|
}
|
|
@@ -246,34 +412,34 @@ declare module "fn/dirName" {
|
|
|
246
412
|
const dirName: (path: any) => any;
|
|
247
413
|
export { dirName };
|
|
248
414
|
}
|
|
249
|
-
declare module "fn/
|
|
250
|
-
const
|
|
251
|
-
export {
|
|
415
|
+
declare module "fn/isBlob" {
|
|
416
|
+
const isBlob: () => boolean;
|
|
417
|
+
export { isBlob };
|
|
418
|
+
}
|
|
419
|
+
declare module "fn/fileExt" {
|
|
420
|
+
const fileExt: (filename: any) => any;
|
|
421
|
+
export { fileExt };
|
|
422
|
+
}
|
|
423
|
+
declare module "fn/isCanvas" {
|
|
424
|
+
const isCanvas: () => boolean;
|
|
425
|
+
export { isCanvas };
|
|
252
426
|
}
|
|
253
427
|
declare module "fn/downloadContent" {
|
|
254
428
|
const downloadContent: (filename: any, content: any, type: any) => void;
|
|
255
429
|
export { downloadContent };
|
|
256
430
|
}
|
|
257
|
-
declare module "fn/
|
|
258
|
-
const
|
|
259
|
-
export {
|
|
431
|
+
declare module "fn/download" {
|
|
432
|
+
const download: (url: any, filename: any, params: any) => any;
|
|
433
|
+
export { download };
|
|
260
434
|
}
|
|
261
435
|
declare module "fn/eraseCookie" {
|
|
262
436
|
const eraseCookie: (name: any) => void;
|
|
263
437
|
export { eraseCookie };
|
|
264
438
|
}
|
|
265
|
-
declare module "fn/error" {
|
|
266
|
-
const error: (errorMsg: any) => never;
|
|
267
|
-
export { error };
|
|
268
|
-
}
|
|
269
439
|
declare module "fn/escapeDquotes" {
|
|
270
440
|
const escapeDquotes: (str: any) => any;
|
|
271
441
|
export { escapeDquotes };
|
|
272
442
|
}
|
|
273
|
-
declare module "fn/escapeRegExp" {
|
|
274
|
-
const escapeRegExp: (str: any) => any;
|
|
275
|
-
export { escapeRegExp };
|
|
276
|
-
}
|
|
277
443
|
declare module "fn/escapeSquotes" {
|
|
278
444
|
const escapeSquotes: (str: any) => any;
|
|
279
445
|
export { escapeSquotes };
|
|
@@ -286,39 +452,17 @@ declare module "fn/escapeUrl" {
|
|
|
286
452
|
const escapeUrl: (url: any, params: any) => string;
|
|
287
453
|
export { escapeUrl };
|
|
288
454
|
}
|
|
289
|
-
declare module "fn/extend" {
|
|
290
|
-
const extend: () => any;
|
|
291
|
-
export { extend };
|
|
292
|
-
}
|
|
293
455
|
declare module "fn/extendOut" {
|
|
456
|
+
import { extendOut } from "fn/extendOut";
|
|
294
457
|
const extendOut: () => any;
|
|
295
458
|
export { extendOut };
|
|
296
459
|
}
|
|
297
|
-
declare module "fn/fdate" {
|
|
298
|
-
const fdate: (d: any, wrong_result: any) => any;
|
|
299
|
-
export { fdate };
|
|
300
|
-
}
|
|
301
|
-
declare module "fn/fdatetime" {
|
|
302
|
-
const fdatetime: (d: any, wrong_result: any) => any;
|
|
303
|
-
export { fdatetime };
|
|
304
|
-
}
|
|
305
460
|
declare module "fn/fieldValue" {
|
|
306
461
|
const fieldValue: (field: any) => any;
|
|
307
462
|
export { fieldValue };
|
|
308
463
|
}
|
|
309
|
-
declare module "fn/fileExt" {
|
|
310
|
-
const fileExt: (filename: any) => any;
|
|
311
|
-
export { fileExt };
|
|
312
|
-
}
|
|
313
|
-
declare module "fn/filter" {
|
|
314
|
-
const filter: (arr: any, prop: any, val: any, operator: any) => any;
|
|
315
|
-
export { filter };
|
|
316
|
-
}
|
|
317
|
-
declare module "fn/filterToConditions" {
|
|
318
|
-
const filterToConditions: (filter: any, operator: any) => any;
|
|
319
|
-
export { filterToConditions };
|
|
320
|
-
}
|
|
321
464
|
declare module "fn/findAll" {
|
|
465
|
+
import { findAll } from "fn/findAll";
|
|
322
466
|
const findAll: (arr: any, filter: any, deepProperty: any, res?: any[]) => any[];
|
|
323
467
|
export { findAll };
|
|
324
468
|
}
|
|
@@ -358,6 +502,10 @@ declare module "fn/ftime" {
|
|
|
358
502
|
const ftime: (d: any, wrong_result: any) => any;
|
|
359
503
|
export { ftime };
|
|
360
504
|
}
|
|
505
|
+
declare module "fn/unique" {
|
|
506
|
+
const unique: (arr: any) => any;
|
|
507
|
+
export { unique };
|
|
508
|
+
}
|
|
361
509
|
declare module "fn/getAllTags" {
|
|
362
510
|
const getAllTags: () => any;
|
|
363
511
|
export { getAllTags };
|
|
@@ -394,6 +542,10 @@ declare module "fn/getDeviceType" {
|
|
|
394
542
|
const getDeviceType: () => "mobile" | "tablet" | "desktop";
|
|
395
543
|
export { getDeviceType };
|
|
396
544
|
}
|
|
545
|
+
declare module "fn/getHTMLOfSelection" {
|
|
546
|
+
const getHTMLOfSelection: () => any;
|
|
547
|
+
export { getHTMLOfSelection };
|
|
548
|
+
}
|
|
397
549
|
declare module "fn/getEventData" {
|
|
398
550
|
const getEventData: (e: any) => Promise<unknown>;
|
|
399
551
|
export { getEventData };
|
|
@@ -406,18 +558,14 @@ declare module "fn/getFieldValues" {
|
|
|
406
558
|
const getFieldValues: (arr: any, field: any, prop: any, val: any, operator: any) => any[];
|
|
407
559
|
export { getFieldValues };
|
|
408
560
|
}
|
|
561
|
+
declare module "fn/removeHtmlComments" {
|
|
562
|
+
const removeHtmlComments: (str: any) => any;
|
|
563
|
+
export { removeHtmlComments };
|
|
564
|
+
}
|
|
409
565
|
declare module "fn/getHtml" {
|
|
410
566
|
const getHtml: (ele: any, stripComments?: boolean) => any;
|
|
411
567
|
export { getHtml };
|
|
412
568
|
}
|
|
413
|
-
declare module "fn/getHTMLOfSelection" {
|
|
414
|
-
const getHTMLOfSelection: () => any;
|
|
415
|
-
export { getHTMLOfSelection };
|
|
416
|
-
}
|
|
417
|
-
declare module "fn/getLoader" {
|
|
418
|
-
const getLoader: (requestId: any) => any;
|
|
419
|
-
export { getLoader };
|
|
420
|
-
}
|
|
421
569
|
declare module "fn/getPath" {
|
|
422
570
|
const getPath: (element: any) => any;
|
|
423
571
|
export { getPath };
|
|
@@ -426,20 +574,8 @@ declare module "fn/getProp" {
|
|
|
426
574
|
const getProp: (obj: any, prop: any) => any;
|
|
427
575
|
export { getProp };
|
|
428
576
|
}
|
|
429
|
-
declare module "fn/getProperty" {
|
|
430
|
-
const getProperty: (obj: any, prop: any) => any;
|
|
431
|
-
export { getProperty };
|
|
432
|
-
}
|
|
433
|
-
declare module "fn/getRequestId" {
|
|
434
|
-
const getRequestId: (url: any, data: any, datatype: any) => string;
|
|
435
|
-
export { getRequestId };
|
|
436
|
-
}
|
|
437
|
-
declare module "fn/getRow" {
|
|
438
|
-
const getRow: (arr: any, prop: any, val: any, operator: any) => any;
|
|
439
|
-
export { getRow };
|
|
440
|
-
}
|
|
441
577
|
declare module "fn/getScrollBarSize" {
|
|
442
|
-
const getScrollBarSize: () =>
|
|
578
|
+
const getScrollBarSize: () => number;
|
|
443
579
|
export { getScrollBarSize };
|
|
444
580
|
}
|
|
445
581
|
declare module "fn/getText" {
|
|
@@ -454,10 +590,6 @@ declare module "fn/happy" {
|
|
|
454
590
|
const happy: (...args: any[]) => any;
|
|
455
591
|
export { happy };
|
|
456
592
|
}
|
|
457
|
-
declare module "fn/hash" {
|
|
458
|
-
const hash: (obj: any) => any;
|
|
459
|
-
export { hash };
|
|
460
|
-
}
|
|
461
593
|
declare module "fn/hex2rgb" {
|
|
462
594
|
const hex2rgb: (hex: any) => {
|
|
463
595
|
r: number;
|
|
@@ -479,13 +611,50 @@ declare module "fn/imageToCanvas" {
|
|
|
479
611
|
export { imageToCanvas };
|
|
480
612
|
}
|
|
481
613
|
declare module "fn/imgToBase64" {
|
|
482
|
-
const imgToBase64: (img: any) =>
|
|
614
|
+
const imgToBase64: (img: any) => HTMLImageElement;
|
|
483
615
|
export { imgToBase64 };
|
|
484
616
|
}
|
|
485
617
|
declare module "fn/info" {
|
|
486
618
|
const info: (...args: any[]) => any;
|
|
487
619
|
export { info };
|
|
488
620
|
}
|
|
621
|
+
declare module "fn/treatAjaxArguments" {
|
|
622
|
+
const treatAjaxArguments: (args: any) => any;
|
|
623
|
+
export { treatAjaxArguments };
|
|
624
|
+
}
|
|
625
|
+
declare module "fn/setNavigationVars" {
|
|
626
|
+
const setNavigationVars: (url: any, title: any, data: any, repl: any) => void;
|
|
627
|
+
export { setNavigationVars };
|
|
628
|
+
}
|
|
629
|
+
declare module "fn/link" {
|
|
630
|
+
import { link } from "fn/link";
|
|
631
|
+
const link: () => any;
|
|
632
|
+
export { link };
|
|
633
|
+
}
|
|
634
|
+
declare module "fn/post" {
|
|
635
|
+
const post: () => any;
|
|
636
|
+
export { post };
|
|
637
|
+
}
|
|
638
|
+
declare module "fn/submit" {
|
|
639
|
+
const submit: (form: any, e: any, fn: any) => void;
|
|
640
|
+
export { submit };
|
|
641
|
+
}
|
|
642
|
+
declare module "fn/resize" {
|
|
643
|
+
const resize: () => void;
|
|
644
|
+
export { resize };
|
|
645
|
+
}
|
|
646
|
+
declare module "fn/isMobileDevice" {
|
|
647
|
+
const isMobileDevice: () => boolean;
|
|
648
|
+
export { isMobileDevice };
|
|
649
|
+
}
|
|
650
|
+
declare module "fn/isTabletDevice" {
|
|
651
|
+
const isTabletDevice: () => boolean;
|
|
652
|
+
export { isTabletDevice };
|
|
653
|
+
}
|
|
654
|
+
declare module "fn/isMobile" {
|
|
655
|
+
const isMobile: () => boolean;
|
|
656
|
+
export { isMobile };
|
|
657
|
+
}
|
|
489
658
|
declare module "fn/init" {
|
|
490
659
|
const init: (cfg: any, force: any) => void;
|
|
491
660
|
export { init };
|
|
@@ -494,22 +663,10 @@ declare module "fn/isActiveInterface" {
|
|
|
494
663
|
const isActiveInterface: (secs?: number) => boolean;
|
|
495
664
|
export { isActiveInterface };
|
|
496
665
|
}
|
|
497
|
-
declare module "fn/isArray" {
|
|
498
|
-
const isArray: () => boolean;
|
|
499
|
-
export { isArray };
|
|
500
|
-
}
|
|
501
|
-
declare module "fn/isBlob" {
|
|
502
|
-
const isBlob: () => boolean;
|
|
503
|
-
export { isBlob };
|
|
504
|
-
}
|
|
505
666
|
declare module "fn/isBoolean" {
|
|
506
667
|
const isBoolean: () => boolean;
|
|
507
668
|
export { isBoolean };
|
|
508
669
|
}
|
|
509
|
-
declare module "fn/isCanvas" {
|
|
510
|
-
const isCanvas: () => boolean;
|
|
511
|
-
export { isCanvas };
|
|
512
|
-
}
|
|
513
670
|
declare module "fn/isColor" {
|
|
514
671
|
const isColor: (st: any) => boolean;
|
|
515
672
|
export { isColor };
|
|
@@ -518,34 +675,22 @@ declare module "fn/isComment" {
|
|
|
518
675
|
const isComment: () => boolean;
|
|
519
676
|
export { isComment };
|
|
520
677
|
}
|
|
521
|
-
declare module "fn/isCp" {
|
|
522
|
-
const isCp: () => boolean;
|
|
523
|
-
export { isCp };
|
|
524
|
-
}
|
|
525
|
-
declare module "fn/isDate" {
|
|
526
|
-
const isDate: () => boolean;
|
|
527
|
-
export { isDate };
|
|
528
|
-
}
|
|
529
678
|
declare module "fn/isDesktopDevice" {
|
|
530
679
|
const isDesktopDevice: () => boolean;
|
|
531
680
|
export { isDesktopDevice };
|
|
532
681
|
}
|
|
682
|
+
declare module "fn/isValidDimension" {
|
|
683
|
+
const isValidDimension: (st: any) => boolean;
|
|
684
|
+
export { isValidDimension };
|
|
685
|
+
}
|
|
533
686
|
declare module "fn/isDimension" {
|
|
534
|
-
const isDimension: (st: any) =>
|
|
687
|
+
const isDimension: (st: any) => boolean;
|
|
535
688
|
export { isDimension };
|
|
536
689
|
}
|
|
537
|
-
declare module "fn/isDom" {
|
|
538
|
-
const isDom: () => boolean;
|
|
539
|
-
export { isDom };
|
|
540
|
-
}
|
|
541
690
|
declare module "fn/isEmail" {
|
|
542
691
|
const isEmail: (st: any) => boolean;
|
|
543
692
|
export { isEmail };
|
|
544
693
|
}
|
|
545
|
-
declare module "fn/isEmpty" {
|
|
546
|
-
const isEmpty: (obj: any) => boolean;
|
|
547
|
-
export { isEmpty };
|
|
548
|
-
}
|
|
549
694
|
declare module "fn/isEvent" {
|
|
550
695
|
const isEvent: () => boolean;
|
|
551
696
|
export { isEvent };
|
|
@@ -554,9 +699,9 @@ declare module "fn/isFocused" {
|
|
|
554
699
|
const isFocused: (ele: any, contain: any) => any;
|
|
555
700
|
export { isFocused };
|
|
556
701
|
}
|
|
557
|
-
declare module "fn/
|
|
558
|
-
const
|
|
559
|
-
export {
|
|
702
|
+
declare module "fn/isIP" {
|
|
703
|
+
const isIP: (st: any) => any;
|
|
704
|
+
export { isIP };
|
|
560
705
|
}
|
|
561
706
|
declare module "fn/isHostname" {
|
|
562
707
|
const isHostname: (st: any) => any;
|
|
@@ -566,38 +711,6 @@ declare module "fn/isInside" {
|
|
|
566
711
|
const isInside: (ele: any, ancestor: any) => boolean;
|
|
567
712
|
export { isInside };
|
|
568
713
|
}
|
|
569
|
-
declare module "fn/isInt" {
|
|
570
|
-
const isInt: () => boolean;
|
|
571
|
-
export { isInt };
|
|
572
|
-
}
|
|
573
|
-
declare module "fn/isIP" {
|
|
574
|
-
const isIP: (st: any) => any;
|
|
575
|
-
export { isIP };
|
|
576
|
-
}
|
|
577
|
-
declare module "fn/isIterable" {
|
|
578
|
-
const isIterable: (v: any) => boolean;
|
|
579
|
-
export { isIterable };
|
|
580
|
-
}
|
|
581
|
-
declare module "fn/isMobile" {
|
|
582
|
-
const isMobile: () => any;
|
|
583
|
-
export { isMobile };
|
|
584
|
-
}
|
|
585
|
-
declare module "fn/isMobileDevice" {
|
|
586
|
-
const isMobileDevice: () => boolean;
|
|
587
|
-
export { isMobileDevice };
|
|
588
|
-
}
|
|
589
|
-
declare module "fn/isNull" {
|
|
590
|
-
const isNull: () => boolean;
|
|
591
|
-
export { isNull };
|
|
592
|
-
}
|
|
593
|
-
declare module "fn/isNumber" {
|
|
594
|
-
const isNumber: () => boolean;
|
|
595
|
-
export { isNumber };
|
|
596
|
-
}
|
|
597
|
-
declare module "fn/isObject" {
|
|
598
|
-
const isObject: () => boolean;
|
|
599
|
-
export { isObject };
|
|
600
|
-
}
|
|
601
714
|
declare module "fn/isPercent" {
|
|
602
715
|
const isPercent: () => boolean;
|
|
603
716
|
export { isPercent };
|
|
@@ -614,74 +727,44 @@ declare module "fn/isPropSize" {
|
|
|
614
727
|
const isPropSize: (name: any) => boolean;
|
|
615
728
|
export { isPropSize };
|
|
616
729
|
}
|
|
617
|
-
declare module "fn/isSame" {
|
|
618
|
-
const isSame: (obj1: any, obj2: any, done: any) => boolean;
|
|
619
|
-
export { isSame };
|
|
620
|
-
}
|
|
621
730
|
declare module "fn/isSQLDate" {
|
|
622
731
|
const isSQLDate: () => boolean;
|
|
623
732
|
export { isSQLDate };
|
|
624
733
|
}
|
|
625
|
-
declare module "fn/isString" {
|
|
626
|
-
const isString: () => boolean;
|
|
627
|
-
export { isString };
|
|
628
|
-
}
|
|
629
734
|
declare module "fn/isSymbol" {
|
|
630
735
|
const isSymbol: () => boolean;
|
|
631
736
|
export { isSymbol };
|
|
632
737
|
}
|
|
633
|
-
declare module "fn/isTabletDevice" {
|
|
634
|
-
const isTabletDevice: () => boolean;
|
|
635
|
-
export { isTabletDevice };
|
|
636
|
-
}
|
|
637
738
|
declare module "fn/isURL" {
|
|
638
739
|
const isURL: (str: any) => any;
|
|
639
740
|
export { isURL };
|
|
640
741
|
}
|
|
641
|
-
declare module "fn/isValidDimension" {
|
|
642
|
-
const isValidDimension: (st: any) => boolean;
|
|
643
|
-
export { isValidDimension };
|
|
644
|
-
}
|
|
645
742
|
declare module "fn/isValidName" {
|
|
646
743
|
const isValidName: (st: any) => boolean;
|
|
647
744
|
export { isValidName };
|
|
648
745
|
}
|
|
649
|
-
declare module "fn/isValue" {
|
|
650
|
-
const isValue: () => boolean;
|
|
651
|
-
export { isValue };
|
|
652
|
-
}
|
|
653
746
|
declare module "fn/isVue" {
|
|
654
747
|
const isVue: () => any;
|
|
655
748
|
export { isVue };
|
|
656
749
|
}
|
|
657
|
-
declare module "fn/iterate" {
|
|
658
|
-
const iterate: (obj: any, fn: any, noPrivate: any, reverse: any) => any;
|
|
659
|
-
export { iterate };
|
|
660
|
-
}
|
|
661
750
|
declare module "fn/lightenDarkenHex" {
|
|
662
751
|
const lightenDarkenHex: (hex: any, amt: any) => string;
|
|
663
752
|
export { lightenDarkenHex };
|
|
664
753
|
}
|
|
665
|
-
declare module "fn/
|
|
666
|
-
const
|
|
667
|
-
export {
|
|
668
|
-
}
|
|
669
|
-
declare module "fn/log" {
|
|
670
|
-
const log: (...args: any[]) => any;
|
|
671
|
-
export { log };
|
|
754
|
+
declare module "fn/warning" {
|
|
755
|
+
const warning: (message: any) => any;
|
|
756
|
+
export { warning };
|
|
672
757
|
}
|
|
673
758
|
declare module "fn/makeReactive" {
|
|
759
|
+
import { makeReactive } from "fn/makeReactive";
|
|
674
760
|
const makeReactive: (obj: any, onSet: any, parent: any, parentProp: any) => any;
|
|
675
761
|
export { makeReactive };
|
|
676
762
|
}
|
|
677
763
|
declare module "fn/map" {
|
|
764
|
+
import { map } from "fn/map";
|
|
678
765
|
const map: (arr: any, fn: any, deepProp: any, level?: number) => any;
|
|
679
766
|
export { map };
|
|
680
767
|
}
|
|
681
|
-
declare module "fn/md5" {
|
|
682
|
-
const md5: (st: any) => string;
|
|
683
|
-
export { md5 };
|
|
684
|
-
}
|
|
685
768
|
declare module "fn/money" {
|
|
686
769
|
const money: (val: any, kilo: any, currency: any, novalue: any, decimal: any, thousands: any, precision: any) => any;
|
|
687
770
|
export { money };
|
|
@@ -698,10 +781,6 @@ declare module "fn/nl2br" {
|
|
|
698
781
|
const nl2br: (st: any, keepNl: any) => any;
|
|
699
782
|
export { nl2br };
|
|
700
783
|
}
|
|
701
|
-
declare module "fn/numProperties" {
|
|
702
|
-
const numProperties: (obj: any) => number;
|
|
703
|
-
export { numProperties };
|
|
704
|
-
}
|
|
705
784
|
declare module "fn/objectToFormData" {
|
|
706
785
|
const objectToFormData: (obj: any, key: any, ignoreList: any) => FormData;
|
|
707
786
|
export { objectToFormData };
|
|
@@ -710,6 +789,10 @@ declare module "fn/order" {
|
|
|
710
789
|
const order: (arr: any, prop: any, dir?: string) => any;
|
|
711
790
|
export { order };
|
|
712
791
|
}
|
|
792
|
+
declare module "fn/selector" {
|
|
793
|
+
const selector: (ele: any) => any;
|
|
794
|
+
export { selector };
|
|
795
|
+
}
|
|
713
796
|
declare module "fn/outerHeight" {
|
|
714
797
|
const outerHeight: (ele: any) => number;
|
|
715
798
|
export { outerHeight };
|
|
@@ -726,10 +809,6 @@ declare module "fn/pickValue" {
|
|
|
726
809
|
const pickValue: (arr: any) => any;
|
|
727
810
|
export { pickValue };
|
|
728
811
|
}
|
|
729
|
-
declare module "fn/post" {
|
|
730
|
-
const post: () => any;
|
|
731
|
-
export { post };
|
|
732
|
-
}
|
|
733
812
|
declare module "fn/postOut" {
|
|
734
813
|
const postOut: (url: any, data: any, success: any, target: any) => void;
|
|
735
814
|
export { postOut };
|
|
@@ -750,10 +829,6 @@ declare module "fn/randomString" {
|
|
|
750
829
|
const randomString: (min: any, max: any, types: any) => string;
|
|
751
830
|
export { randomString };
|
|
752
831
|
}
|
|
753
|
-
declare module "fn/removeAccents" {
|
|
754
|
-
const removeAccents: (st: any) => any;
|
|
755
|
-
export { removeAccents };
|
|
756
|
-
}
|
|
757
832
|
declare module "fn/removeEmpty" {
|
|
758
833
|
const removeEmpty: (arr: any) => any[];
|
|
759
834
|
export { removeEmpty };
|
|
@@ -762,14 +837,6 @@ declare module "fn/removeExtraSpaces" {
|
|
|
762
837
|
const removeExtraSpaces: (str: any) => any;
|
|
763
838
|
export { removeExtraSpaces };
|
|
764
839
|
}
|
|
765
|
-
declare module "fn/removeHtmlComments" {
|
|
766
|
-
const removeHtmlComments: (str: any) => any;
|
|
767
|
-
export { removeHtmlComments };
|
|
768
|
-
}
|
|
769
|
-
declare module "fn/removePrivateProp" {
|
|
770
|
-
const removePrivateProp: (obj: any, deep: any) => boolean;
|
|
771
|
-
export { removePrivateProp };
|
|
772
|
-
}
|
|
773
840
|
declare module "fn/removeTrailingChars" {
|
|
774
841
|
const removeTrailingChars: (st: any, char: any) => any;
|
|
775
842
|
export { removeTrailingChars };
|
|
@@ -778,18 +845,10 @@ declare module "fn/repeat" {
|
|
|
778
845
|
const repeat: (st: any, num: any) => string;
|
|
779
846
|
export { repeat };
|
|
780
847
|
}
|
|
781
|
-
declare module "fn/replaceAll" {
|
|
782
|
-
const replaceAll: (find: any, replace: any, str: any, flags?: string) => any;
|
|
783
|
-
export { replaceAll };
|
|
784
|
-
}
|
|
785
848
|
declare module "fn/replaceSelection" {
|
|
786
849
|
const replaceSelection: (html: any, selectInserted: any) => void;
|
|
787
850
|
export { replaceSelection };
|
|
788
851
|
}
|
|
789
|
-
declare module "fn/resize" {
|
|
790
|
-
const resize: () => void;
|
|
791
|
-
export { resize };
|
|
792
|
-
}
|
|
793
852
|
declare module "fn/rgb2hex" {
|
|
794
853
|
const rgb2hex: (rgb: any) => string;
|
|
795
854
|
export { rgb2hex };
|
|
@@ -802,22 +861,18 @@ declare module "fn/roundDecimal" {
|
|
|
802
861
|
const roundDecimal: (value: any, decimals: any) => number;
|
|
803
862
|
export { roundDecimal };
|
|
804
863
|
}
|
|
864
|
+
declare module "fn/trim" {
|
|
865
|
+
const trim: (str: any, hair?: string) => any;
|
|
866
|
+
export { trim };
|
|
867
|
+
}
|
|
805
868
|
declare module "fn/sanitize" {
|
|
806
869
|
const sanitize: (str: any, separator?: string) => any;
|
|
807
870
|
export { sanitize };
|
|
808
871
|
}
|
|
809
|
-
declare module "fn/search" {
|
|
810
|
-
const search: (arr: any, prop: any, val: any, operator: any, startFrom: any) => any;
|
|
811
|
-
export { search };
|
|
812
|
-
}
|
|
813
872
|
declare module "fn/selectElementText" {
|
|
814
873
|
const selectElementText: (ele: any, win: any) => void;
|
|
815
874
|
export { selectElementText };
|
|
816
875
|
}
|
|
817
|
-
declare module "fn/selector" {
|
|
818
|
-
const selector: (ele: any) => any;
|
|
819
|
-
export { selector };
|
|
820
|
-
}
|
|
821
876
|
declare module "fn/setCookie" {
|
|
822
877
|
const setCookie: (name: any, value: any, days: any) => void;
|
|
823
878
|
export { setCookie };
|
|
@@ -826,10 +881,6 @@ declare module "fn/setCssVar" {
|
|
|
826
881
|
const setCssVar: (varname: any, value: any) => void;
|
|
827
882
|
export { setCssVar };
|
|
828
883
|
}
|
|
829
|
-
declare module "fn/setNavigationVars" {
|
|
830
|
-
const setNavigationVars: (url: any, title: any, data: any, repl: any) => void;
|
|
831
|
-
export { setNavigationVars };
|
|
832
|
-
}
|
|
833
884
|
declare module "fn/setProp" {
|
|
834
885
|
const setProp: (obj: any, prop: any, value: any, writable?: boolean, configurable?: boolean) => void;
|
|
835
886
|
export { setProp };
|
|
@@ -843,6 +894,7 @@ declare module "fn/shorten" {
|
|
|
843
894
|
export { shorten };
|
|
844
895
|
}
|
|
845
896
|
declare module "fn/shortenObj" {
|
|
897
|
+
import { shortenObj } from "fn/shortenObj";
|
|
846
898
|
const shortenObj: (obj: any, max?: number) => any;
|
|
847
899
|
export { shortenObj };
|
|
848
900
|
}
|
|
@@ -850,18 +902,6 @@ declare module "fn/shuffle" {
|
|
|
850
902
|
const shuffle: (array: any) => any;
|
|
851
903
|
export { shuffle };
|
|
852
904
|
}
|
|
853
|
-
declare module "fn/simpleHash" {
|
|
854
|
-
const simpleHash: (str: any) => any;
|
|
855
|
-
export { simpleHash };
|
|
856
|
-
}
|
|
857
|
-
declare module "fn/simpleHash1" {
|
|
858
|
-
const simpleHash1: (str: any) => number;
|
|
859
|
-
export { simpleHash1 };
|
|
860
|
-
}
|
|
861
|
-
declare module "fn/simpleHash2" {
|
|
862
|
-
const simpleHash2: (str: any) => number;
|
|
863
|
-
export { simpleHash2 };
|
|
864
|
-
}
|
|
865
905
|
declare module "fn/startChrono" {
|
|
866
906
|
const startChrono: (name: any) => void;
|
|
867
907
|
export { startChrono };
|
|
@@ -878,14 +918,6 @@ declare module "fn/string2ArrayBuffer" {
|
|
|
878
918
|
const string2ArrayBuffer: (str: any) => ArrayBuffer;
|
|
879
919
|
export { string2ArrayBuffer };
|
|
880
920
|
}
|
|
881
|
-
declare module "fn/submit" {
|
|
882
|
-
const submit: (form: any, e: any, fn: any) => void;
|
|
883
|
-
export { submit };
|
|
884
|
-
}
|
|
885
|
-
declare module "fn/substr" {
|
|
886
|
-
const substr: (str: any, from: any, length: any) => any;
|
|
887
|
-
export { substr };
|
|
888
|
-
}
|
|
889
921
|
declare module "fn/sum" {
|
|
890
922
|
const sum: (arr: any, numberProp: any, prop: any, val: any, operator: any) => number;
|
|
891
923
|
export { sum };
|
|
@@ -906,279 +938,14 @@ declare module "fn/translate" {
|
|
|
906
938
|
const translate: (o: any, namespace: any) => void;
|
|
907
939
|
export { translate };
|
|
908
940
|
}
|
|
909
|
-
declare module "fn/treatAjaxArguments" {
|
|
910
|
-
const treatAjaxArguments: (args: any) => any;
|
|
911
|
-
export { treatAjaxArguments };
|
|
912
|
-
}
|
|
913
|
-
declare module "fn/trim" {
|
|
914
|
-
const trim: (str: any, hair?: string) => any;
|
|
915
|
-
export { trim };
|
|
916
|
-
}
|
|
917
941
|
declare module "fn/uniqString" {
|
|
918
|
-
const uniqString: () =>
|
|
942
|
+
const uniqString: () => string;
|
|
919
943
|
export { uniqString };
|
|
920
944
|
}
|
|
921
|
-
declare module "fn/unique" {
|
|
922
|
-
const unique: (arr: any) => any;
|
|
923
|
-
export { unique };
|
|
924
|
-
}
|
|
925
945
|
declare module "fn/upload" {
|
|
926
946
|
const upload: (url: any, file: any, success: any, failure: any, progress: any) => any;
|
|
927
947
|
export { upload };
|
|
928
948
|
}
|
|
929
|
-
declare module "fn/warning" {
|
|
930
|
-
const warning: (message: any) => any;
|
|
931
|
-
export { warning };
|
|
932
|
-
}
|
|
933
949
|
declare module "index" {
|
|
934
|
-
|
|
935
|
-
_addLoader: (requestId: any, prom: any, source: any) => number;
|
|
936
|
-
_compareValues: (a: any, b: any, prop: any, dir?: string) => 0 | 1 | -1;
|
|
937
|
-
_deleteLoader: (requestId: any, res: any, isAbort: any) => boolean;
|
|
938
|
-
abort: (requestId: any) => void;
|
|
939
|
-
abortURL: (url: any) => void;
|
|
940
|
-
addColors: (colors: any) => void;
|
|
941
|
-
addInputs: (form: any, params: any, prefix: any) => void;
|
|
942
|
-
addStyle: (ele: any, o: any) => void;
|
|
943
|
-
adjustHeight: () => any;
|
|
944
|
-
adjustSize: (type: any, eles: any) => void;
|
|
945
|
-
adjustWidth: () => any;
|
|
946
|
-
ajax: (url: any, datatype: any, data: any, success: any, failure: any, abort: any) => any;
|
|
947
|
-
analyzeFunction: (fn: any) => {
|
|
948
|
-
body: any;
|
|
949
|
-
args: any[];
|
|
950
|
-
argString: string;
|
|
951
|
-
isArrow: boolean;
|
|
952
|
-
hasFunction: boolean;
|
|
953
|
-
name: any;
|
|
954
|
-
isAsync: boolean;
|
|
955
|
-
hash: any;
|
|
956
|
-
};
|
|
957
|
-
animateCss: (ele: any, animationName: any, callback: any) => void;
|
|
958
|
-
arrayBuffer2String: (buf: any) => any;
|
|
959
|
-
arrayFromProp: (arr: any, prop: any) => any[];
|
|
960
|
-
autoExtend: (namespace: any, obj: any) => void;
|
|
961
|
-
baseName: (path: any, suffix: any) => any;
|
|
962
|
-
br2nl: (st: any) => any;
|
|
963
|
-
calendar: (d: any, wrong_result: any) => any;
|
|
964
|
-
callback: (url: any, res: any, fn: any, fn2: any, ele: any) => boolean;
|
|
965
|
-
camelize: (str: any) => any;
|
|
966
|
-
camelToCss: (str: any) => any;
|
|
967
|
-
canvasToImage: (canvas: any) => HTMLImageElement;
|
|
968
|
-
center: (ele: any) => any;
|
|
969
|
-
checkProps: (obj: any, props: any, checkEmpty: any) => any;
|
|
970
|
-
checkPropsDetails: (obj: any, props: any, checkEmpty: any) => {
|
|
971
|
-
error: boolean;
|
|
972
|
-
result: boolean;
|
|
973
|
-
};
|
|
974
|
-
checkPropsOrDie: (obj: any, props: any, checkEmpty: any) => boolean;
|
|
975
|
-
checkType: (value: any, type: any, msg: any, ...logs: any[]) => void;
|
|
976
|
-
circularReplacer: () => (key: any, value: any) => any;
|
|
977
|
-
clone: (obj: any) => any;
|
|
978
|
-
colorToHex: (color: any) => string | CanvasGradient | CanvasPattern;
|
|
979
|
-
compare: (v1: any, v2: any, operator: any) => any;
|
|
980
|
-
compareConditions: (data: any, filter: any) => boolean;
|
|
981
|
-
copy: (st: any) => Promise<unknown>;
|
|
982
|
-
correctCase: (str: any) => any;
|
|
983
|
-
count: (arr: any, prop: any, val: any, operator: any) => any;
|
|
984
|
-
crc32: (str: any) => number;
|
|
985
|
-
createObject: () => any;
|
|
986
|
-
cssExists: (f: any) => boolean;
|
|
987
|
-
date: (v: any) => any;
|
|
988
|
-
dateSQL: (v: any, dayOnly: any) => any;
|
|
989
|
-
daysInMonth: (v: any) => any;
|
|
990
|
-
deepPath: (arr: any, filter: any, deepProperty: any, res?: any[]) => false | any[];
|
|
991
|
-
defaultAjaxAbortFunction: (message: any, url: any) => void;
|
|
992
|
-
defaultAjaxErrorFunction: (jqXHR: any, textStatus: any, errorThrown: any) => void;
|
|
993
|
-
defaultAlertFunction: (text: any, title: any) => void;
|
|
994
|
-
defaultConfirmFunction: (text: any, yesFn: any, noFn: any) => void;
|
|
995
|
-
defaultEndLoadingFunction: (url: any, data: any, res: any) => boolean;
|
|
996
|
-
defaultErrorFunction: (message: any) => void;
|
|
997
|
-
defaultHistoryFunction: (obj: any) => boolean;
|
|
998
|
-
defaultLinkFunction: (responseObj: any, ele: any) => boolean;
|
|
999
|
-
defaultPostLinkFunction: (r: any) => boolean;
|
|
1000
|
-
defaultPreLinkFunction: (url: any, ele: any) => boolean;
|
|
1001
|
-
defaultResizeFunction: () => boolean;
|
|
1002
|
-
defaultStartLoadingFunction: (url: any, data: any) => boolean;
|
|
1003
|
-
deleteProp: (obj: any, prop: any) => void;
|
|
1004
|
-
diffObj: (obj1: any, obj2: any, unchanged: any, notRoot: any) => any;
|
|
1005
|
-
dirName: (path: any) => any;
|
|
1006
|
-
download: (url: any, filename: any, params: any) => any;
|
|
1007
|
-
downloadContent: (filename: any, content: any, type: any) => void;
|
|
1008
|
-
each: (arr: any, fn: any) => any;
|
|
1009
|
-
eraseCookie: (name: any) => void;
|
|
1010
|
-
error: (errorMsg: any) => never;
|
|
1011
|
-
escapeDquotes: (str: any) => any;
|
|
1012
|
-
escapeRegExp: (str: any) => any;
|
|
1013
|
-
escapeSquotes: (str: any) => any;
|
|
1014
|
-
escapeTicks: (str: any) => any;
|
|
1015
|
-
escapeUrl: (url: any, params: any) => string;
|
|
1016
|
-
extend: () => any;
|
|
1017
|
-
extendOut: () => any;
|
|
1018
|
-
fdate: (d: any, wrong_result: any) => any;
|
|
1019
|
-
fdatetime: (d: any, wrong_result: any) => any;
|
|
1020
|
-
fieldValue: (field: any) => any;
|
|
1021
|
-
fileExt: (filename: any) => any;
|
|
1022
|
-
filter: (arr: any, prop: any, val: any, operator: any) => any;
|
|
1023
|
-
filterToConditions: (filter: any, operator: any) => any;
|
|
1024
|
-
findAll: (arr: any, filter: any, deepProperty: any, res?: any[]) => any[];
|
|
1025
|
-
fori: (arr: any, fn: any, max?: number, min?: number) => void;
|
|
1026
|
-
forir: (arr: any, fn: any, max?: number, min?: number) => void;
|
|
1027
|
-
format: (str: any) => any;
|
|
1028
|
-
formatBytes: (bytes: any, decimals?: number) => string;
|
|
1029
|
-
formatDate: (date: any, format: any) => any;
|
|
1030
|
-
formatSize: (st: any, noValid: any) => any;
|
|
1031
|
-
formdata: (form: any) => {};
|
|
1032
|
-
fromXml: (xml: any, arrayTags: any) => {};
|
|
1033
|
-
ftime: (d: any, wrong_result: any) => any;
|
|
1034
|
-
getAllTags: () => any;
|
|
1035
|
-
getAncestors: (ele: any, sel: any) => any[];
|
|
1036
|
-
getAttributes: (ele: any) => any;
|
|
1037
|
-
getBrowserName: () => "Edge" | "Opera" | "Chrome" | "Internet Explorer" | "Firefox" | "Safari" | "Other";
|
|
1038
|
-
getBrowserVersion: () => string;
|
|
1039
|
-
getCookie: (name: any) => any;
|
|
1040
|
-
getCssVar: (varname: any) => string;
|
|
1041
|
-
getDay: (v: any) => number | false;
|
|
1042
|
-
getDeviceType: () => "mobile" | "tablet" | "desktop";
|
|
1043
|
-
getEventData: (e: any) => Promise<unknown>;
|
|
1044
|
-
getField: (arr: any, field: any, prop: any, val: any, operator: any) => any;
|
|
1045
|
-
getFieldValues: (arr: any, field: any, prop: any, val: any, operator: any) => any[];
|
|
1046
|
-
getHtml: (ele: any, stripComments?: boolean) => any;
|
|
1047
|
-
getHTMLOfSelection: () => any;
|
|
1048
|
-
getLoader: (requestId: any) => any;
|
|
1049
|
-
getPath: (element: any) => any;
|
|
1050
|
-
getProp: (obj: any, prop: any) => any;
|
|
1051
|
-
getProperty: (obj: any, prop: any) => any;
|
|
1052
|
-
getRequestId: (url: any, data: any, datatype: any) => string;
|
|
1053
|
-
getRow: (arr: any, prop: any, val: any, operator: any) => any;
|
|
1054
|
-
getScrollBarSize: () => any;
|
|
1055
|
-
getText: (ele: any) => any;
|
|
1056
|
-
getTimeoff: () => number;
|
|
1057
|
-
happy: (...args: any[]) => any;
|
|
1058
|
-
hash: (obj: any) => any;
|
|
1059
|
-
hex2rgb: (hex: any) => {
|
|
1060
|
-
r: number;
|
|
1061
|
-
g: number;
|
|
1062
|
-
b: number;
|
|
1063
|
-
};
|
|
1064
|
-
history: () => false | History;
|
|
1065
|
-
html2text: (st: any) => any;
|
|
1066
|
-
imageToCanvas: (img: any) => HTMLCanvasElement;
|
|
1067
|
-
imgToBase64: (img: any) => any;
|
|
1068
|
-
info: (...args: any[]) => any;
|
|
1069
|
-
init: (cfg: any, force: any) => void;
|
|
1070
|
-
isActiveInterface: (secs?: number) => boolean;
|
|
1071
|
-
isArray: () => boolean;
|
|
1072
|
-
isBlob: () => boolean;
|
|
1073
|
-
isBoolean: () => boolean;
|
|
1074
|
-
isCanvas: () => boolean;
|
|
1075
|
-
isColor: (st: any) => boolean;
|
|
1076
|
-
isComment: () => boolean;
|
|
1077
|
-
isCp: () => boolean;
|
|
1078
|
-
isDate: () => boolean;
|
|
1079
|
-
isDesktopDevice: () => boolean;
|
|
1080
|
-
isDimension: (st: any) => any;
|
|
1081
|
-
isDom: () => boolean;
|
|
1082
|
-
isEmail: (st: any) => boolean;
|
|
1083
|
-
isEmpty: (obj: any) => boolean;
|
|
1084
|
-
isEvent: () => boolean;
|
|
1085
|
-
isFocused: (ele: any, contain: any) => any;
|
|
1086
|
-
isFunction: () => boolean;
|
|
1087
|
-
isHostname: (st: any) => any;
|
|
1088
|
-
isInside: (ele: any, ancestor: any) => boolean;
|
|
1089
|
-
isInt: () => boolean;
|
|
1090
|
-
isIP: (st: any) => any;
|
|
1091
|
-
isIterable: (v: any) => boolean;
|
|
1092
|
-
isMobile: () => any;
|
|
1093
|
-
isMobileDevice: () => boolean;
|
|
1094
|
-
isNull: () => boolean;
|
|
1095
|
-
isNumber: () => boolean;
|
|
1096
|
-
isObject: () => boolean;
|
|
1097
|
-
isPercent: () => boolean;
|
|
1098
|
-
isPrimitive: () => boolean;
|
|
1099
|
-
isPromise: () => boolean;
|
|
1100
|
-
isPropSize: (name: any) => boolean;
|
|
1101
|
-
isSame: (obj1: any, obj2: any, done: any) => boolean;
|
|
1102
|
-
isSQLDate: () => boolean;
|
|
1103
|
-
isString: () => boolean;
|
|
1104
|
-
isSymbol: () => boolean;
|
|
1105
|
-
isTabletDevice: () => boolean;
|
|
1106
|
-
isURL: (str: any) => any;
|
|
1107
|
-
isValidDimension: (st: any) => boolean;
|
|
1108
|
-
isValidName: (st: any) => boolean;
|
|
1109
|
-
isValue: () => boolean;
|
|
1110
|
-
isVue: () => any;
|
|
1111
|
-
iterate: (obj: any, fn: any, noPrivate: any, reverse: any) => any;
|
|
1112
|
-
lightenDarkenHex: (hex: any, amt: any) => string;
|
|
1113
|
-
link: () => any;
|
|
1114
|
-
log: (...args: any[]) => any;
|
|
1115
|
-
makeReactive: (obj: any, onSet: any, parent: any, parentProp: any) => any;
|
|
1116
|
-
map: (arr: any, fn: any, deepProp: any, level?: number) => any;
|
|
1117
|
-
md5: (st: any) => string;
|
|
1118
|
-
money: (val: any, kilo: any, currency: any, novalue: any, decimal: any, thousands: any, precision: any) => any;
|
|
1119
|
-
move: (arr: any, fromIndex: any, toIndex: any) => any;
|
|
1120
|
-
multiorder: (arr: any, orders: any) => any;
|
|
1121
|
-
nl2br: (st: any, keepNl: any) => any;
|
|
1122
|
-
numProperties: (obj: any) => number;
|
|
1123
|
-
objectToFormData: (obj: any, key: any, ignoreList: any) => FormData;
|
|
1124
|
-
order: (arr: any, prop: any, dir?: string) => any;
|
|
1125
|
-
outerHeight: (ele: any) => number;
|
|
1126
|
-
outerWidth: (ele: any) => number;
|
|
1127
|
-
percent: (percent: any, cent: any) => number;
|
|
1128
|
-
pickValue: (arr: any) => any;
|
|
1129
|
-
post: () => any;
|
|
1130
|
-
postOut: (url: any, data: any, success: any, target: any) => void;
|
|
1131
|
-
printf: (format: any) => any;
|
|
1132
|
-
quotes2html: (st: any, type: any) => any;
|
|
1133
|
-
randomInt: (min: any, max: any) => number;
|
|
1134
|
-
randomString: (min: any, max: any, types: any) => string;
|
|
1135
|
-
removeAccents: (st: any) => any;
|
|
1136
|
-
removeEmpty: (arr: any) => any[];
|
|
1137
|
-
removeExtraSpaces: (str: any) => any;
|
|
1138
|
-
removeHtmlComments: (str: any) => any;
|
|
1139
|
-
removePrivateProp: (obj: any, deep: any) => boolean;
|
|
1140
|
-
removeTrailingChars: (st: any, char: any) => any;
|
|
1141
|
-
repeat: (st: any, num: any) => string;
|
|
1142
|
-
replaceAll: (find: any, replace: any, str: any, flags?: string) => any;
|
|
1143
|
-
replaceSelection: (html: any, selectInserted: any) => void;
|
|
1144
|
-
resize: () => void;
|
|
1145
|
-
rgb2hex: (rgb: any) => string;
|
|
1146
|
-
riterate: (obj: any, fn: any, noPrivate: any) => any;
|
|
1147
|
-
roundDecimal: (value: any, decimals: any) => number;
|
|
1148
|
-
sanitize: (str: any, separator?: string) => any;
|
|
1149
|
-
search: (arr: any, prop: any, val: any, operator: any, startFrom: any) => any;
|
|
1150
|
-
selectElementText: (ele: any, win: any) => void;
|
|
1151
|
-
selector: (ele: any) => any;
|
|
1152
|
-
setCookie: (name: any, value: any, days: any) => void;
|
|
1153
|
-
setCssVar: (varname: any, value: any) => void;
|
|
1154
|
-
setNavigationVars: (url: any, title: any, data: any, repl: any) => void;
|
|
1155
|
-
setProp: (obj: any, prop: any, value: any, writable?: boolean, configurable?: boolean) => void;
|
|
1156
|
-
setProperty: (obj: any, prop: any, value: any, force: any) => void;
|
|
1157
|
-
shorten: (st: any, len: any, adj: any) => any;
|
|
1158
|
-
shortenObj: (obj: any, max?: number) => any;
|
|
1159
|
-
shuffle: (array: any) => any;
|
|
1160
|
-
simpleHash: (str: any) => any;
|
|
1161
|
-
simpleHash1: (str: any) => number;
|
|
1162
|
-
simpleHash2: (str: any) => number;
|
|
1163
|
-
startChrono: (name: any) => void;
|
|
1164
|
-
stat: (returnStat: any) => any;
|
|
1165
|
-
stopChrono: (name: any) => number;
|
|
1166
|
-
string2ArrayBuffer: (str: any) => ArrayBuffer;
|
|
1167
|
-
submit: (form: any, e: any, fn: any) => void;
|
|
1168
|
-
substr: (str: any, from: any, length: any) => any;
|
|
1169
|
-
sum: (arr: any, numberProp: any, prop: any, val: any, operator: any) => number;
|
|
1170
|
-
timestamp: (seconds: any) => number;
|
|
1171
|
-
toCSV: (arr: any, valSep?: string, rowSep?: string, valEsc?: string) => string;
|
|
1172
|
-
toggleFullScreen: () => void;
|
|
1173
|
-
translate: (o: any, namespace: any) => void;
|
|
1174
|
-
treatAjaxArguments: (args: any) => any;
|
|
1175
|
-
trim: (str: any, hair?: string) => any;
|
|
1176
|
-
uniqString: () => any;
|
|
1177
|
-
unique: (arr: any) => any;
|
|
1178
|
-
upload: (url: any, file: any, success: any, failure: any, progress: any) => any;
|
|
1179
|
-
warning: (message: any) => any;
|
|
1180
|
-
};
|
|
1181
|
-
const env: {};
|
|
1182
|
-
const vars: {};
|
|
1183
|
-
export { env, vars, fn };
|
|
950
|
+
export {};
|
|
1184
951
|
}
|