@otl-core/cms-types 1.1.31 → 1.1.33
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/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -440,6 +440,8 @@ interface Font {
|
|
|
440
440
|
source: "google" | "custom";
|
|
441
441
|
variants: string[];
|
|
442
442
|
subsets?: string[];
|
|
443
|
+
/** CSS font-stretch keyword (e.g. "condensed", "expanded"). Omitted or "normal" for normal-width fonts. */
|
|
444
|
+
stretch?: string;
|
|
443
445
|
files?: Record<string, string>;
|
|
444
446
|
}
|
|
445
447
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -440,6 +440,8 @@ interface Font {
|
|
|
440
440
|
source: "google" | "custom";
|
|
441
441
|
variants: string[];
|
|
442
442
|
subsets?: string[];
|
|
443
|
+
/** CSS font-stretch keyword (e.g. "condensed", "expanded"). Omitted or "normal" for normal-width fonts. */
|
|
444
|
+
stretch?: string;
|
|
443
445
|
files?: Record<string, string>;
|
|
444
446
|
}
|
|
445
447
|
/**
|