@types/web 0.0.148 → 0.0.149
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 +5 -4
- 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.149 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.149.
|
package/index.d.ts
CHANGED
|
@@ -669,10 +669,6 @@ interface ImageEncodeOptions {
|
|
|
669
669
|
type?: string;
|
|
670
670
|
}
|
|
671
671
|
|
|
672
|
-
interface ImportMeta {
|
|
673
|
-
url: string;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
672
|
interface InputEventInit extends UIEventInit {
|
|
677
673
|
data?: string | null;
|
|
678
674
|
dataTransfer?: DataTransfer | null;
|
|
@@ -14561,6 +14557,11 @@ declare var ImageData: {
|
|
|
14561
14557
|
new(data: Uint8ClampedArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
14562
14558
|
};
|
|
14563
14559
|
|
|
14560
|
+
interface ImportMeta {
|
|
14561
|
+
url: string;
|
|
14562
|
+
resolve(specifier: string): string;
|
|
14563
|
+
}
|
|
14564
|
+
|
|
14564
14565
|
/**
|
|
14565
14566
|
* Available only in secure contexts.
|
|
14566
14567
|
*
|