@types/sharedworker 0.0.63 → 0.0.64
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/README.md +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
28
28
|
|
|
29
29
|
## Deploy Metadata
|
|
30
30
|
|
|
31
|
-
You can read what changed in version 0.0.
|
|
31
|
+
You can read what changed in version 0.0.64 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.64.
|
package/index.d.ts
CHANGED
|
@@ -1404,6 +1404,7 @@ declare var FileReaderSync: {
|
|
|
1404
1404
|
|
|
1405
1405
|
/** Available only in secure contexts. */
|
|
1406
1406
|
interface FileSystemDirectoryHandle extends FileSystemHandle {
|
|
1407
|
+
readonly kind: "directory";
|
|
1407
1408
|
getDirectoryHandle(name: string, options?: FileSystemGetDirectoryOptions): Promise<FileSystemDirectoryHandle>;
|
|
1408
1409
|
getFileHandle(name: string, options?: FileSystemGetFileOptions): Promise<FileSystemFileHandle>;
|
|
1409
1410
|
removeEntry(name: string, options?: FileSystemRemoveOptions): Promise<void>;
|
|
@@ -1417,6 +1418,7 @@ declare var FileSystemDirectoryHandle: {
|
|
|
1417
1418
|
|
|
1418
1419
|
/** Available only in secure contexts. */
|
|
1419
1420
|
interface FileSystemFileHandle extends FileSystemHandle {
|
|
1421
|
+
readonly kind: "file";
|
|
1420
1422
|
getFile(): Promise<File>;
|
|
1421
1423
|
}
|
|
1422
1424
|
|