@types/tar 4.0.3 → 4.0.4

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.
Files changed (4) hide show
  1. tar/LICENSE +21 -21
  2. tar/README.md +5 -5
  3. tar/index.d.ts +1 -1
  4. tar/package.json +4 -4
tar/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) Microsoft Corporation. All rights reserved.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE
1
+ MIT License
2
+
3
+ Copyright (c) Microsoft Corporation.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE
tar/README.md CHANGED
@@ -5,12 +5,12 @@
5
5
  This package contains type definitions for tar (https://github.com/npm/node-tar).
6
6
 
7
7
  # Details
8
- Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tar
8
+ Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tar.
9
9
 
10
- Additional Details
11
- * Last updated: Wed, 10 Jul 2019 00:30:51 GMT
12
- * Dependencies: @types/minipass, @types/node
10
+ ### Additional Details
11
+ * Last updated: Wed, 18 Nov 2020 00:19:43 GMT
12
+ * Dependencies: [@types/minipass](https://npmjs.com/package/@types/minipass), [@types/node](https://npmjs.com/package/@types/node)
13
13
  * Global values: none
14
14
 
15
15
  # Credits
16
- These definitions were written by Maxime LUCE <https://github.com/SomaticIT>, and Connor Peet <https://github.com/connor4312>.
16
+ These definitions were written by [Maxime LUCE](https://github.com/SomaticIT), and [Connor Peet](https://github.com/connor4312).
tar/index.d.ts CHANGED
@@ -716,7 +716,7 @@ export const x: typeof extract;
716
716
  *
717
717
  * Archive data should be written to the returned stream.
718
718
  */
719
- export function list(options?: ListOptions, fileList?: ReadonlyArray<string>, callback?: (err?: Error) => void): stream.Writable;
719
+ export function list(options?: ListOptions & FileOptions, fileList?: ReadonlyArray<string>, callback?: (err?: Error) => void): stream.Writable;
720
720
 
721
721
  /**
722
722
  * List the contents of a tarball archive. The fileList is an array of paths
tar/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/tar",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "description": "TypeScript definitions for tar",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -16,7 +16,7 @@
16
16
  }
17
17
  ],
18
18
  "main": "",
19
- "types": "index",
19
+ "types": "index.d.ts",
20
20
  "repository": {
21
21
  "type": "git",
22
22
  "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
@@ -27,6 +27,6 @@
27
27
  "@types/minipass": "*",
28
28
  "@types/node": "*"
29
29
  },
30
- "typesPublisherContentHash": "3153dd22505c6c845ae3b160de2304faee264aedd2b4b10af8894c76a3d80a02",
31
- "typeScriptVersion": "2.0"
30
+ "typesPublisherContentHash": "30d331e61e5cf0331015727fdf7fd167e90c67d9c6f2edcb26a0aab9a4f4dd92",
31
+ "typeScriptVersion": "3.2"
32
32
  }