@nx.js/runtime 0.0.63 → 0.0.65

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +12 -6
  2. 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
- * @demo See the `fonts` application for an example of using custom fonts.
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
  /**
@@ -4136,11 +4142,11 @@ declare namespace Switch {
4136
4142
  */
4137
4143
  constructor(nro: ArrayBuffer);
4138
4144
  /**
4139
- * Launches the application.
4145
+ * Launches the installed title or homebrew application.
4140
4146
  *
4141
- * @note This only works for installed applications (__not__ homebrew apps).
4147
+ * @param args The arguments to pass to the application (only for homebrew applications).
4142
4148
  */
4143
- launch(): never;
4149
+ launch(...args: string[]): never;
4144
4150
  createSaveDataSync(info: SaveDataCreationInfoWithNacp): SaveData;
4145
4151
  /**
4146
4152
  * Creates the Save Data for this {@link Application} for the provided user profile.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx.js/runtime",
3
- "version": "0.0.63",
3
+ "version": "0.0.65",
4
4
  "description": "nx.js runtime",
5
5
  "repository": {
6
6
  "type": "git",