@types/serviceworker 0.0.34 → 0.0.35
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.35 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.35.
|
package/index.d.ts
CHANGED
|
@@ -1484,6 +1484,7 @@ declare var FileReader: {
|
|
|
1484
1484
|
|
|
1485
1485
|
/** Available only in secure contexts. */
|
|
1486
1486
|
interface FileSystemDirectoryHandle extends FileSystemHandle {
|
|
1487
|
+
readonly kind: "directory";
|
|
1487
1488
|
getDirectoryHandle(name: string, options?: FileSystemGetDirectoryOptions): Promise<FileSystemDirectoryHandle>;
|
|
1488
1489
|
getFileHandle(name: string, options?: FileSystemGetFileOptions): Promise<FileSystemFileHandle>;
|
|
1489
1490
|
removeEntry(name: string, options?: FileSystemRemoveOptions): Promise<void>;
|
|
@@ -1497,6 +1498,7 @@ declare var FileSystemDirectoryHandle: {
|
|
|
1497
1498
|
|
|
1498
1499
|
/** Available only in secure contexts. */
|
|
1499
1500
|
interface FileSystemFileHandle extends FileSystemHandle {
|
|
1501
|
+
readonly kind: "file";
|
|
1500
1502
|
getFile(): Promise<File>;
|
|
1501
1503
|
}
|
|
1502
1504
|
|