@types/sharedworker 0.0.83 → 0.0.84
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 +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
28
28
|
|
|
29
29
|
## Deploy Metadata
|
|
30
30
|
|
|
31
|
-
You can read what changed in version 0.0.
|
|
31
|
+
You can read what changed in version 0.0.84 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.84.
|
package/index.d.ts
CHANGED
|
@@ -180,8 +180,11 @@ interface FileSystemRemoveOptions {
|
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
interface FontFaceDescriptors {
|
|
183
|
-
|
|
183
|
+
ascentOverride?: string;
|
|
184
|
+
descentOverride?: string;
|
|
185
|
+
display?: FontDisplay;
|
|
184
186
|
featureSettings?: string;
|
|
187
|
+
lineGapOverride?: string;
|
|
185
188
|
stretch?: string;
|
|
186
189
|
style?: string;
|
|
187
190
|
unicodeRange?: string;
|
|
@@ -1604,7 +1607,7 @@ declare var FileSystemHandle: {
|
|
|
1604
1607
|
interface FontFace {
|
|
1605
1608
|
ascentOverride: string;
|
|
1606
1609
|
descentOverride: string;
|
|
1607
|
-
display:
|
|
1610
|
+
display: FontDisplay;
|
|
1608
1611
|
family: string;
|
|
1609
1612
|
featureSettings: string;
|
|
1610
1613
|
lineGapOverride: string;
|
|
@@ -5831,6 +5834,7 @@ type ColorGamut = "p3" | "rec2020" | "srgb";
|
|
|
5831
5834
|
type ColorSpaceConversion = "default" | "none";
|
|
5832
5835
|
type EndingType = "native" | "transparent";
|
|
5833
5836
|
type FileSystemHandleKind = "directory" | "file";
|
|
5837
|
+
type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
|
|
5834
5838
|
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
|
|
5835
5839
|
type FontFaceSetLoadStatus = "loaded" | "loading";
|
|
5836
5840
|
type GlobalCompositeOperation = "color" | "color-burn" | "color-dodge" | "copy" | "darken" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "lighter" | "luminosity" | "multiply" | "overlay" | "saturation" | "screen" | "soft-light" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";
|