@bbn/bbn 1.0.72 → 1.0.73
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 +2 -2
- package/dist/fn/object/multiorder.d.ts +1 -1
- package/dist/fn.d.ts +1 -1
- package/package.json +1 -1
package/dist/bundle.d.ts
CHANGED
|
@@ -3918,7 +3918,7 @@ declare module "fn/object/multiorder" {
|
|
|
3918
3918
|
* @param {Array|Object} orders The properties and directions (asc, desc) to order by
|
|
3919
3919
|
* @returns {Array} The same array (arr), ordered differently
|
|
3920
3920
|
*/
|
|
3921
|
-
const multiorder: (arr: object[], orders:
|
|
3921
|
+
const multiorder: (arr: object[], orders: any) => object[];
|
|
3922
3922
|
export { multiorder };
|
|
3923
3923
|
}
|
|
3924
3924
|
declare module "fn/string/nl2br" {
|
|
@@ -4828,7 +4828,7 @@ declare module "fn" {
|
|
|
4828
4828
|
md5: (st: any) => string;
|
|
4829
4829
|
money: (val: number, kilo?: boolean, currency?: string, novalue?: string | false, decimal?: string, thousands?: string, precision?: number) => string;
|
|
4830
4830
|
move: (arr: any[], fromIndex: number, toIndex: number) => any[];
|
|
4831
|
-
multiorder: (arr: object[], orders:
|
|
4831
|
+
multiorder: (arr: object[], orders: any) => object[];
|
|
4832
4832
|
nl2br: (st: any, keepNl: any) => string;
|
|
4833
4833
|
numProperties: (obj: object) => number;
|
|
4834
4834
|
objectToFormData: (obj: object, key?: string, ignoreList?: string[]) => FormData;
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
* @param {Array|Object} orders The properties and directions (asc, desc) to order by
|
|
37
37
|
* @returns {Array} The same array (arr), ordered differently
|
|
38
38
|
*/
|
|
39
|
-
declare const multiorder: (arr: object[], orders:
|
|
39
|
+
declare const multiorder: (arr: object[], orders: any) => object[];
|
|
40
40
|
export { multiorder };
|
package/dist/fn.d.ts
CHANGED
|
@@ -181,7 +181,7 @@ declare const fn: {
|
|
|
181
181
|
md5: (st: any) => string;
|
|
182
182
|
money: (val: number, kilo?: boolean, currency?: string, novalue?: string | false, decimal?: string, thousands?: string, precision?: number) => string;
|
|
183
183
|
move: (arr: any[], fromIndex: number, toIndex: number) => any[];
|
|
184
|
-
multiorder: (arr: object[], orders:
|
|
184
|
+
multiorder: (arr: object[], orders: any) => object[];
|
|
185
185
|
nl2br: (st: any, keepNl: any) => string;
|
|
186
186
|
numProperties: (obj: object) => number;
|
|
187
187
|
objectToFormData: (obj: object, key?: string, ignoreList?: string[]) => FormData;
|