@types/sharedworker 0.0.83 → 0.0.85
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 -3
- 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.85 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.85.
|
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;
|
|
@@ -1614,7 +1617,6 @@ interface FontFace {
|
|
|
1614
1617
|
style: string;
|
|
1615
1618
|
unicodeRange: string;
|
|
1616
1619
|
variant: string;
|
|
1617
|
-
variationSettings: string;
|
|
1618
1620
|
weight: string;
|
|
1619
1621
|
load(): Promise<FontFace>;
|
|
1620
1622
|
}
|
|
@@ -5831,6 +5833,7 @@ type ColorGamut = "p3" | "rec2020" | "srgb";
|
|
|
5831
5833
|
type ColorSpaceConversion = "default" | "none";
|
|
5832
5834
|
type EndingType = "native" | "transparent";
|
|
5833
5835
|
type FileSystemHandleKind = "directory" | "file";
|
|
5836
|
+
type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
|
|
5834
5837
|
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
|
|
5835
5838
|
type FontFaceSetLoadStatus = "loaded" | "loading";
|
|
5836
5839
|
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";
|