@thi.ng/api 8.9.4 → 8.9.6

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**: 2023-08-22T14:39:27Z
3
+ - **Last updated**: 2023-10-23T07:37:37Z
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/api",
3
- "version": "8.9.4",
3
+ "version": "8.9.6",
4
4
  "description": "Common, generic types, interfaces & mixins",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -37,12 +37,12 @@
37
37
  "test": "testament test"
38
38
  },
39
39
  "devDependencies": {
40
- "@microsoft/api-extractor": "^7.36.4",
41
- "@thi.ng/testament": "^0.3.22",
42
- "rimraf": "^5.0.1",
40
+ "@microsoft/api-extractor": "^7.38.0",
41
+ "@thi.ng/testament": "^0.3.24",
42
+ "rimraf": "^5.0.5",
43
43
  "tools": "^0.0.1",
44
- "typedoc": "^0.24.8",
45
- "typescript": "^5.1.6"
44
+ "typedoc": "^0.25.2",
45
+ "typescript": "^5.2.2"
46
46
  },
47
47
  "keywords": [
48
48
  "assert",
@@ -225,5 +225,5 @@
225
225
  "default": "./watch.js"
226
226
  }
227
227
  },
228
- "gitHead": "74cfe3fb8de5bfcbfc1109e67604541cbd7b77aa\n"
228
+ "gitHead": "8d46d9326a9f9b81d65e7e274446f5964f9942ac\n"
229
229
  }
package/typedarray.d.ts CHANGED
@@ -223,14 +223,14 @@ export declare const intTypeForBits: (x: number) => IntType;
223
223
  *
224
224
  * @param t
225
225
  */
226
- export declare const narrowInt: (t: IntType | "i64") => "i32" | "i8" | "i16";
226
+ export declare const narrowInt: (t: IntType | "i64") => "i8" | "i16" | "i32";
227
227
  /**
228
228
  * Returns the next larger {@link IntType} for given type (or the same type if
229
229
  * already the widest).
230
230
  *
231
231
  * @param t
232
232
  */
233
- export declare const widenInt: (t: IntType) => "i32" | "i64" | "i16";
233
+ export declare const widenInt: (t: IntType) => "i16" | "i32" | "i64";
234
234
  /**
235
235
  * Returns the next smaller {@link UintType} for given type (or the same type if
236
236
  * already the narrowest).