@nx.js/runtime 0.0.63 → 0.0.64
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.ts +9 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3241,10 +3241,16 @@ declare class FontFaceSet extends EventTarget {
|
|
|
3241
3241
|
[Symbol.iterator](): IterableIterator<FontFace>;
|
|
3242
3242
|
}
|
|
3243
3243
|
/**
|
|
3244
|
-
* Contains the available fonts for use on the screen Canvas context.
|
|
3245
|
-
* By default, `"system-ui"` is the only font available, which is the system font provided by the Switch operating system.
|
|
3244
|
+
* Contains the available fonts for use on the {@link screen | `screen`} Canvas context.
|
|
3246
3245
|
*
|
|
3247
|
-
*
|
|
3246
|
+
* There are two built-in fonts available:
|
|
3247
|
+
*
|
|
3248
|
+
* - `"system-ui"` is the system font provided by the Switch operating system.
|
|
3249
|
+
* - `"system-icons"` contains the icons used by the Switch operating system.
|
|
3250
|
+
*
|
|
3251
|
+
* Custom fonts can be added to the set using the {@link FontFaceSet.add | `add()`} method.
|
|
3252
|
+
*
|
|
3253
|
+
* @see https://nxjs.n8.io/runtime/concepts/fonts
|
|
3248
3254
|
*/
|
|
3249
3255
|
declare var fonts: FontFaceSet;
|
|
3250
3256
|
/**
|