@types/web 0.0.87 → 0.0.88
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 +8 -3
- 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.88 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.88.
|
package/index.d.ts
CHANGED
|
@@ -2007,7 +2007,6 @@ interface ARIAMixin {
|
|
|
2007
2007
|
ariaChecked: string | null;
|
|
2008
2008
|
ariaColCount: string | null;
|
|
2009
2009
|
ariaColIndex: string | null;
|
|
2010
|
-
ariaColIndexText: string | null;
|
|
2011
2010
|
ariaColSpan: string | null;
|
|
2012
2011
|
ariaCurrent: string | null;
|
|
2013
2012
|
ariaDisabled: string | null;
|
|
@@ -2031,7 +2030,6 @@ interface ARIAMixin {
|
|
|
2031
2030
|
ariaRoleDescription: string | null;
|
|
2032
2031
|
ariaRowCount: string | null;
|
|
2033
2032
|
ariaRowIndex: string | null;
|
|
2034
|
-
ariaRowIndexText: string | null;
|
|
2035
2033
|
ariaRowSpan: string | null;
|
|
2036
2034
|
ariaSelected: string | null;
|
|
2037
2035
|
ariaSetSize: string | null;
|
|
@@ -3002,6 +3000,7 @@ interface CSSStyleDeclaration {
|
|
|
3002
3000
|
containerName: string;
|
|
3003
3001
|
containerType: string;
|
|
3004
3002
|
content: string;
|
|
3003
|
+
contentVisibility: string;
|
|
3005
3004
|
counterIncrement: string;
|
|
3006
3005
|
counterReset: string;
|
|
3007
3006
|
counterSet: string;
|
|
@@ -3121,6 +3120,7 @@ interface CSSStyleDeclaration {
|
|
|
3121
3120
|
maskRepeat: string;
|
|
3122
3121
|
maskSize: string;
|
|
3123
3122
|
maskType: string;
|
|
3123
|
+
mathStyle: string;
|
|
3124
3124
|
maxBlockSize: string;
|
|
3125
3125
|
maxHeight: string;
|
|
3126
3126
|
maxInlineSize: string;
|
|
@@ -3774,6 +3774,7 @@ declare var ClipboardEvent: {
|
|
|
3774
3774
|
|
|
3775
3775
|
/** Available only in secure contexts. */
|
|
3776
3776
|
interface ClipboardItem {
|
|
3777
|
+
readonly presentationStyle: PresentationStyle;
|
|
3777
3778
|
readonly types: ReadonlyArray<string>;
|
|
3778
3779
|
getType(type: string): Promise<Blob>;
|
|
3779
3780
|
}
|
|
@@ -5390,7 +5391,7 @@ interface FileReader extends EventTarget {
|
|
|
5390
5391
|
onloadend: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;
|
|
5391
5392
|
onloadstart: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;
|
|
5392
5393
|
onprogress: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;
|
|
5393
|
-
readonly readyState:
|
|
5394
|
+
readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;
|
|
5394
5395
|
readonly result: string | ArrayBuffer | null;
|
|
5395
5396
|
abort(): void;
|
|
5396
5397
|
readAsArrayBuffer(blob: Blob): void;
|
|
@@ -10561,6 +10562,10 @@ interface OffscreenCanvas extends EventTarget {
|
|
|
10561
10562
|
*
|
|
10562
10563
|
* Returns null if the canvas has already been initialized with another context type (e.g., trying to get a "2d" context after getting a "webgl" context).
|
|
10563
10564
|
*/
|
|
10565
|
+
getContext(contextId: "2d", options?: any): OffscreenCanvasRenderingContext2D | null;
|
|
10566
|
+
getContext(contextId: "bitmaprenderer", options?: any): ImageBitmapRenderingContext | null;
|
|
10567
|
+
getContext(contextId: "webgl", options?: any): WebGLRenderingContext | null;
|
|
10568
|
+
getContext(contextId: "webgl2", options?: any): WebGL2RenderingContext | null;
|
|
10564
10569
|
getContext(contextId: OffscreenRenderingContextId, options?: any): OffscreenRenderingContext | null;
|
|
10565
10570
|
/** Returns a newly created ImageBitmap object with the image in the OffscreenCanvas object. The image in the OffscreenCanvas object is replaced with a new blank image. */
|
|
10566
10571
|
transferToImageBitmap(): ImageBitmap;
|