Skip to content

Commit

Permalink
0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminAster committed Jul 22, 2024
1 parent 257fafa commit 527b218
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 18 deletions.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/// <reference lib="ESNext" />
/// <reference lib="DOM" />
/// <reference lib="DOM.Iterable" />
/// <reference lib="DOM.AsyncIterable" />

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

Expand Down Expand Up @@ -51,7 +52,6 @@
/// <reference path="./whatwg/file-system-observer.d.ts" />
/// <reference path="./whatwg/file-system.d.ts" />
/// <reference path="./whatwg/html.d.ts" />
/// <reference path="./whatwg/streams.d.ts" />

/// <reference path="./wicg/background-fetch.d.ts" />
/// <reference path="./wicg/background-sync.d.ts" />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "new-javascript",
"version": "0.4.6",
"version": "0.4.7",
"description": "TypeScript type definitions for new JavaScript stuff that isn't yet in TypeScript's standard type definitions",
"main": "./index.d.ts",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"target": "ESNext",
"noEmit": true,
"strict": false,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"lib": ["ESNext", "DOM", "DOM.Iterable", "DOM.AsyncIterable"],
"types": [],
},
}
7 changes: 0 additions & 7 deletions whatwg/file-system.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,3 @@ interface FileSystemFileHandle extends FileSystemHandle {
move(destinationDirectory: FileSystemDirectoryHandle): Promise<void>;
move(destinationDirectory: FileSystemDirectoryHandle, newEntryName: string): Promise<void>;
}

interface FileSystemDirectoryHandle extends FileSystemHandle {
[Symbol.asyncIterator](): AsyncIterableIterator<[string, FileSystemHandle]>;
entries(): AsyncIterableIterator<[string, FileSystemHandle]>;
keys(): AsyncIterableIterator<string>;
values(): AsyncIterableIterator<FileSystemHandle>;
}
8 changes: 0 additions & 8 deletions whatwg/streams.d.ts

This file was deleted.

0 comments on commit 527b218

Please sign in to comment.