@types/web 0.0.50 → 0.0.51
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
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.51 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.51.
|
package/index.d.ts
CHANGED
|
@@ -5125,6 +5125,7 @@ declare var FileSystemDirectoryEntry: {
|
|
|
5125
5125
|
|
|
5126
5126
|
/** Available only in secure contexts. */
|
|
5127
5127
|
interface FileSystemDirectoryHandle extends FileSystemHandle {
|
|
5128
|
+
readonly kind: "directory";
|
|
5128
5129
|
getDirectoryHandle(name: string, options?: FileSystemGetDirectoryOptions): Promise<FileSystemDirectoryHandle>;
|
|
5129
5130
|
getFileHandle(name: string, options?: FileSystemGetFileOptions): Promise<FileSystemFileHandle>;
|
|
5130
5131
|
removeEntry(name: string, options?: FileSystemRemoveOptions): Promise<void>;
|
|
@@ -5170,6 +5171,7 @@ declare var FileSystemFileEntry: {
|
|
|
5170
5171
|
|
|
5171
5172
|
/** Available only in secure contexts. */
|
|
5172
5173
|
interface FileSystemFileHandle extends FileSystemHandle {
|
|
5174
|
+
readonly kind: "file";
|
|
5173
5175
|
getFile(): Promise<File>;
|
|
5174
5176
|
}
|
|
5175
5177
|
|