@types/node 18.17.4 → 18.17.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.
- node v18.17/README.md +1 -1
- node v18.17/fs.d.ts +5 -0
- node v18.17/package.json +2 -2
- node v18.17/test.d.ts +10 -0
- node v18.17/ts4.8/fs.d.ts +5 -0
- node v18.17/ts4.8/test.d.ts +10 -0
node v18.17/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v18.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, 18 Aug 2023 17:32:49 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone`
|
|
14
14
|
|
node v18.17/fs.d.ts
CHANGED
node v18.17/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.17.
|
|
3
|
+
"version": "18.17.6",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -232,6 +232,6 @@
|
|
|
232
232
|
},
|
|
233
233
|
"scripts": {},
|
|
234
234
|
"dependencies": {},
|
|
235
|
-
"typesPublisherContentHash": "
|
|
235
|
+
"typesPublisherContentHash": "d631a2035bb957494c14d83f4dfc0da849198d1e6e20cd692977842ca7e4796b",
|
|
236
236
|
"typeScriptVersion": "4.3"
|
|
237
237
|
}
|
node v18.17/test.d.ts
CHANGED
|
@@ -756,6 +756,11 @@ interface TestFail {
|
|
|
756
756
|
* The error thrown by the test.
|
|
757
757
|
*/
|
|
758
758
|
error: Error;
|
|
759
|
+
/**
|
|
760
|
+
* The type of the test, used to denote whether this is a suite.
|
|
761
|
+
* @since 18.17.0
|
|
762
|
+
*/
|
|
763
|
+
type?: 'suite';
|
|
759
764
|
};
|
|
760
765
|
/**
|
|
761
766
|
* The test name.
|
|
@@ -791,6 +796,11 @@ interface TestPass {
|
|
|
791
796
|
* The duration of the test in milliseconds.
|
|
792
797
|
*/
|
|
793
798
|
duration_ms: number;
|
|
799
|
+
/**
|
|
800
|
+
* The type of the test, used to denote whether this is a suite.
|
|
801
|
+
* @since 18.17.0
|
|
802
|
+
*/
|
|
803
|
+
type?: 'suite';
|
|
794
804
|
};
|
|
795
805
|
/**
|
|
796
806
|
* The test name.
|
node v18.17/ts4.8/fs.d.ts
CHANGED
node v18.17/ts4.8/test.d.ts
CHANGED
|
@@ -742,6 +742,11 @@ interface TestFail {
|
|
|
742
742
|
* The error thrown by the test.
|
|
743
743
|
*/
|
|
744
744
|
error: Error;
|
|
745
|
+
/**
|
|
746
|
+
* The type of the test, used to denote whether this is a suite.
|
|
747
|
+
* @since 18.17.0
|
|
748
|
+
*/
|
|
749
|
+
type?: 'suite';
|
|
745
750
|
};
|
|
746
751
|
/**
|
|
747
752
|
* The test name.
|
|
@@ -777,6 +782,11 @@ interface TestPass {
|
|
|
777
782
|
* The duration of the test in milliseconds.
|
|
778
783
|
*/
|
|
779
784
|
duration_ms: number;
|
|
785
|
+
/**
|
|
786
|
+
* The type of the test, used to denote whether this is a suite.
|
|
787
|
+
* @since 18.17.0
|
|
788
|
+
*/
|
|
789
|
+
type?: 'suite';
|
|
780
790
|
};
|
|
781
791
|
/**
|
|
782
792
|
* The test name.
|