@types/file-entry-cache 5.0.1 → 5.0.3
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.
- file-entry-cache/README.md +1 -2
- file-entry-cache/index.d.ts +6 -11
- file-entry-cache/package.json +6 -5
file-entry-cache/README.md
CHANGED
|
@@ -8,9 +8,8 @@ This package contains type definitions for file-entry-cache (https://github.com/
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/file-entry-cache.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 18 Oct 2023 01:17:34 GMT
|
|
12
12
|
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
|
|
13
|
-
* Global values: none
|
|
14
13
|
|
|
15
14
|
# Credits
|
|
16
15
|
These definitions were written by [Piotr Błażejewicz](https://github.com/peterblazejewicz).
|
file-entry-cache/index.d.ts
CHANGED
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
// Type definitions for file-entry-cache 5.0
|
|
2
|
-
// Project: https://github.com/royriojas/file-entry-cache#readme
|
|
3
|
-
// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
|
|
4
|
-
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
5
|
-
|
|
6
1
|
/// <reference types="node" />
|
|
7
2
|
|
|
8
3
|
/**
|
|
@@ -73,11 +68,11 @@ export interface AnalyzedFilesInfo {
|
|
|
73
68
|
export interface FileDescriptor {
|
|
74
69
|
readonly key: string;
|
|
75
70
|
readonly notFound: boolean;
|
|
76
|
-
readonly err?: Error;
|
|
77
|
-
readonly changed?: boolean;
|
|
71
|
+
readonly err?: Error | undefined;
|
|
72
|
+
readonly changed?: boolean | undefined;
|
|
78
73
|
readonly meta?: {
|
|
79
|
-
readonly size?: number;
|
|
80
|
-
readonly mtime?: number;
|
|
81
|
-
readonly hash?: string;
|
|
82
|
-
};
|
|
74
|
+
readonly size?: number | undefined;
|
|
75
|
+
readonly mtime?: number | undefined;
|
|
76
|
+
readonly hash?: string | undefined;
|
|
77
|
+
} | undefined;
|
|
83
78
|
}
|
file-entry-cache/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/file-entry-cache",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.3",
|
|
4
4
|
"description": "TypeScript definitions for file-entry-cache",
|
|
5
|
+
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/file-entry-cache",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"contributors": [
|
|
7
8
|
{
|
|
8
9
|
"name": "Piotr Błażejewicz",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
10
|
+
"githubUsername": "peterblazejewicz",
|
|
11
|
+
"url": "https://github.com/peterblazejewicz"
|
|
11
12
|
}
|
|
12
13
|
],
|
|
13
14
|
"main": "",
|
|
@@ -21,6 +22,6 @@
|
|
|
21
22
|
"dependencies": {
|
|
22
23
|
"@types/node": "*"
|
|
23
24
|
},
|
|
24
|
-
"typesPublisherContentHash": "
|
|
25
|
-
"typeScriptVersion": "
|
|
25
|
+
"typesPublisherContentHash": "cc490c6c11597c61699fd1446621e94c0e802abaaca3135d58d3405555b21038",
|
|
26
|
+
"typeScriptVersion": "4.5"
|
|
26
27
|
}
|