@stemy/ngx-utils 10.3.3 → 10.3.4

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.
@@ -4,7 +4,7 @@ export declare class ArrayUtils {
4
4
  static any<T>(arr: T[], cb: (item: T) => boolean): boolean;
5
5
  static move<T>(arr: T[], oldIndex: number, newIndex: number): T[];
6
6
  static reversed(arr: any[]): any[];
7
- static min<T>(arr: T[], cb: (item: T, index?: number) => number): number;
8
- static max<T>(arr: T[], cb: (item: T, index?: number) => number): number;
7
+ static min<T>(arr: T[], cb: (item: T, index?: number) => number): T;
8
+ static max<T>(arr: T[], cb: (item: T, index?: number) => number): T;
9
9
  static chunk<T>(arr: T[], size: number): Array<T[]>;
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "10.3.3",
3
+ "version": "10.3.4",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",