@thi.ng/grid-iterators 4.0.88 → 4.0.89

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-08-18T14:11:34Z
3
+ - **Last updated**: 2024-09-19T21:09:34Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -25,5 +25,5 @@
25
25
  *
26
26
  * @param exp
27
27
  */
28
- export declare function diamondSquare(exp: number): Generator<number[], void, undefined>;
28
+ export declare function diamondSquare(exp: number): Generator<number[], void, unknown>;
29
29
  //# sourceMappingURL=diamond-square.d.ts.map
package/interleave.d.ts CHANGED
@@ -22,7 +22,7 @@ export interface InterleaveOpts2D extends GridIterOpts2D {
22
22
  *
23
23
  * @param opts -
24
24
  */
25
- export declare const interleaveColumns2d: (opts: InterleaveOpts2D) => Generator<import("./api.js").GridCoord2D, void, undefined>;
25
+ export declare const interleaveColumns2d: (opts: InterleaveOpts2D) => Generator<import("./api.js").GridCoord2D, void, any>;
26
26
  /**
27
27
  * Similar to {@link interleaveColumns2d}, but yields 2D grid coordinates in
28
28
  * the order of interleaved rows with configurable `step` size (default:
@@ -37,6 +37,6 @@ export declare const interleaveColumns2d: (opts: InterleaveOpts2D) => Generator<
37
37
  *
38
38
  * @param opts -
39
39
  */
40
- export declare const interleaveRows2d: (opts: InterleaveOpts2D) => Generator<import("./api.js").GridCoord2D, void, undefined>;
41
- export declare function __interleave(opts: InterleaveOpts2D, order: [number, number], [x, y]: [number, number]): Generator<import("./api.js").GridCoord2D, void, undefined>;
40
+ export declare const interleaveRows2d: (opts: InterleaveOpts2D) => Generator<import("./api.js").GridCoord2D, void, any>;
41
+ export declare function __interleave(opts: InterleaveOpts2D, order: [number, number], [x, y]: [number, number]): Generator<import("./api.js").GridCoord2D, void, any>;
42
42
  //# sourceMappingURL=interleave.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/grid-iterators",
3
- "version": "4.0.88",
3
+ "version": "4.0.89",
4
4
  "description": "2D grid and shape iterators w/ multiple orderings",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -38,20 +38,20 @@
38
38
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
39
39
  },
40
40
  "dependencies": {
41
- "@thi.ng/api": "^8.11.9",
42
- "@thi.ng/arrays": "^2.10.0",
43
- "@thi.ng/binary": "^3.4.32",
44
- "@thi.ng/bitfield": "^2.3.50",
45
- "@thi.ng/errors": "^2.5.15",
46
- "@thi.ng/morton": "^3.1.96",
47
- "@thi.ng/random": "^4.0.3",
48
- "@thi.ng/transducers": "^9.2.3"
41
+ "@thi.ng/api": "^8.11.10",
42
+ "@thi.ng/arrays": "^2.10.1",
43
+ "@thi.ng/binary": "^3.4.33",
44
+ "@thi.ng/bitfield": "^2.3.51",
45
+ "@thi.ng/errors": "^2.5.16",
46
+ "@thi.ng/morton": "^3.1.97",
47
+ "@thi.ng/random": "^4.0.4",
48
+ "@thi.ng/transducers": "^9.2.4"
49
49
  },
50
50
  "devDependencies": {
51
- "@microsoft/api-extractor": "^7.47.5",
52
- "esbuild": "^0.23.0",
53
- "typedoc": "^0.26.5",
54
- "typescript": "^5.5.4"
51
+ "@microsoft/api-extractor": "^7.47.9",
52
+ "esbuild": "^0.23.1",
53
+ "typedoc": "^0.26.7",
54
+ "typescript": "^5.6.2"
55
55
  },
56
56
  "keywords": [
57
57
  "2d",
@@ -166,5 +166,5 @@
166
166
  ],
167
167
  "year": 2019
168
168
  },
169
- "gitHead": "8335e9571c2b9b13844ee4d8d24f99143c5f8816\n"
169
+ "gitHead": "b52baa3750ddd1256892df966ab7ac9b4806a9ef\n"
170
170
  }