Skip to content

Commit 527b218

Browse files
committed
0.4.7
1 parent 257fafa commit 527b218

File tree

5 files changed

+3
-18
lines changed

5 files changed

+3
-18
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/// <reference lib="ESNext" />
33
/// <reference lib="DOM" />
44
/// <reference lib="DOM.Iterable" />
5+
/// <reference lib="DOM.AsyncIterable" />
56

67
/// <reference path="./worker.d.ts" />
78

@@ -51,7 +52,6 @@
5152
/// <reference path="./whatwg/file-system-observer.d.ts" />
5253
/// <reference path="./whatwg/file-system.d.ts" />
5354
/// <reference path="./whatwg/html.d.ts" />
54-
/// <reference path="./whatwg/streams.d.ts" />
5555

5656
/// <reference path="./wicg/background-fetch.d.ts" />
5757
/// <reference path="./wicg/background-sync.d.ts" />

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new-javascript",
3-
"version": "0.4.6",
3+
"version": "0.4.7",
44
"description": "TypeScript type definitions for new JavaScript stuff that isn't yet in TypeScript's standard type definitions",
55
"main": "./index.d.ts",
66
"repository": {

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"target": "ESNext",
55
"noEmit": true,
66
"strict": false,
7-
"lib": ["ESNext", "DOM", "DOM.Iterable"],
7+
"lib": ["ESNext", "DOM", "DOM.Iterable", "DOM.AsyncIterable"],
88
"types": [],
99
},
1010
}

whatwg/file-system.d.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,3 @@ interface FileSystemFileHandle extends FileSystemHandle {
1414
move(destinationDirectory: FileSystemDirectoryHandle): Promise<void>;
1515
move(destinationDirectory: FileSystemDirectoryHandle, newEntryName: string): Promise<void>;
1616
}
17-
18-
interface FileSystemDirectoryHandle extends FileSystemHandle {
19-
[Symbol.asyncIterator](): AsyncIterableIterator<[string, FileSystemHandle]>;
20-
entries(): AsyncIterableIterator<[string, FileSystemHandle]>;
21-
keys(): AsyncIterableIterator<string>;
22-
values(): AsyncIterableIterator<FileSystemHandle>;
23-
}

whatwg/streams.d.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)