@types/node 14.14.21 → 14.14.22
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/README.md +1 -1
- node/package.json +2 -2
- node/ts3.4/assert.d.ts +1 -3
node/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (http://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 19 Jan 2021 23:09:28 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.14.
|
|
3
|
+
"version": "14.14.22",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -251,6 +251,6 @@
|
|
|
251
251
|
},
|
|
252
252
|
"scripts": {},
|
|
253
253
|
"dependencies": {},
|
|
254
|
-
"typesPublisherContentHash": "
|
|
254
|
+
"typesPublisherContentHash": "1fca9b97600d43cbf3c9f3a1c57e994dbe5cd9aa768bd7accf34db05f7079716",
|
|
255
255
|
"typeScriptVersion": "3.4"
|
|
256
256
|
}
|
node/ts3.4/assert.d.ts
CHANGED
|
@@ -2,9 +2,7 @@ declare module 'assert' {
|
|
|
2
2
|
/** An alias of `assert.ok()`. */
|
|
3
3
|
function assert(value: any, message?: string | Error): void;
|
|
4
4
|
namespace assert {
|
|
5
|
-
class AssertionError
|
|
6
|
-
name: string;
|
|
7
|
-
message: string;
|
|
5
|
+
class AssertionError extends Error {
|
|
8
6
|
actual: any;
|
|
9
7
|
expected: any;
|
|
10
8
|
operator: string;
|