@idlebox/itypes 1.0.14 → 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/error.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ declare interface ErrorConstructor {
2
+ captureStackTrace: any;
3
+ stackTraceLimit: number;
4
+ }
5
+
6
+ declare namespace NodeJS {
7
+ type Signals = string;
8
+ interface ErrnoException extends Error {}
9
+ }
package/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  /// <reference path="./console.d.ts" />
2
2
  /// <reference path="./timeout.d.ts" />
3
3
  /// <reference path="./url.d.ts" />
4
+ /// <reference path="./error.d.ts" />
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@idlebox/itypes",
3
3
  "type": "module",
4
- "version": "1.0.14",
4
+ "version": "1.0.15",
5
5
  "description": "some global variables copied from @types/node or dom",
6
6
  "keywords": [
7
7
  "Typescript",
@@ -10,7 +10,7 @@
10
10
  "typings"
11
11
  ],
12
12
  "devDependencies": {
13
- "@mpis/run": "^0.0.11",
13
+ "@mpis/run": "^0.0.16",
14
14
  "@build-script/single-dog-asset": "latest"
15
15
  },
16
16
  "exports": {
package/tsconfig.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "compilerOptions": {
3
+ "noEmit": true,
4
+ "types": [],
5
+ "lib": ["ESNext"],
6
+ },
7
+ }