@overwolf/ow-electron-packages-types 1.0.0-beta.5 → 1.0.0-beta.6

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/package.json +1 -1
  2. package/types.d.ts +1 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@overwolf/ow-electron-packages-types",
3
- "version": "1.0.0-beta.5",
3
+ "version": "1.0.0-beta.6",
4
4
  "description": "Type definition file for autocompletion and documentation purposes for ow-electron packages",
5
5
  "license": "MIT",
6
6
  "types": "types.d.ts",
package/types.d.ts CHANGED
@@ -3170,9 +3170,6 @@ interface EncoderInformation {
3170
3170
  * const options: RecordingAppOptions = {
3171
3171
  * showDebugWindow: true,
3172
3172
  * enableDebugLogs: true,
3173
- * customCommandLineArgs: ['--multi-threading'],
3174
- * overrideOBSFolder: 'C:/custom/obs',
3175
- * statsInterval: 5000
3176
3173
  * };
3177
3174
  * ```
3178
3175
  */
@@ -3938,7 +3935,7 @@ interface IOverwolfRecordingApi {
3938
3935
 
3939
3936
  /**
3940
3937
  * @event Fired periodically with recorder performance metrics.
3941
- * Interval is configured via {@link RecordingAppOptions.statsInterval}.
3938
+ *
3942
3939
  */
3943
3940
  on(eventName: 'stats', listener: (args: RecorderStats) => void): this;
3944
3941
  }