@overwolf/ow-electron-packages-types 0.0.14 → 0.0.15
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/game-list.ts +2 -1
- package/overlay.d.ts +16 -10
- package/package.json +1 -1
package/game-list.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// game list version:
|
|
1
|
+
// game list version: 21
|
|
2
2
|
|
|
3
3
|
export const enum kLaunchersIds {
|
|
4
4
|
LOLLauncher = 10902,
|
|
@@ -60,6 +60,7 @@ export const enum kGameIds {
|
|
|
60
60
|
SpectreDivide = 24484,
|
|
61
61
|
SplitgateArenaWarfare = 21404,
|
|
62
62
|
StarCraftII = 5855,
|
|
63
|
+
StardewValley = 19054,
|
|
63
64
|
Starfield = 23222,
|
|
64
65
|
Stormgate = 23818,
|
|
65
66
|
TeamfightTactics = 21570,
|
package/overlay.d.ts
CHANGED
|
@@ -64,19 +64,25 @@ export interface OverlayOptions {
|
|
|
64
64
|
zOrder?: ZOrderType | number; // backwards compatible
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
OverlayOptions {
|
|
67
|
+
/** Overlay ow-electron options */
|
|
68
|
+
export interface OverlayOptions {
|
|
70
69
|
/**
|
|
71
|
-
*
|
|
72
|
-
|
|
73
|
-
|
|
70
|
+
* Controls how input events are handled by the overlay window
|
|
71
|
+
* @default 'noPassThrough'
|
|
72
|
+
*/
|
|
73
|
+
passthrough?: PassthroughType | number;
|
|
74
74
|
|
|
75
|
-
|
|
76
|
-
|
|
75
|
+
/**
|
|
76
|
+
* Controls the Z-order (stacking order) of the overlay window relative to other window
|
|
77
|
+
* @default 'default'
|
|
78
|
+
*/
|
|
79
|
+
zOrder?: ZOrderType | number; // backwards compatible;
|
|
77
80
|
|
|
78
|
-
/**
|
|
79
|
-
|
|
81
|
+
/**
|
|
82
|
+
* If true, the overlay will not intercept keyboard input.
|
|
83
|
+
* @default false
|
|
84
|
+
*/
|
|
85
|
+
ignoreKeyboardInput?: boolean;
|
|
80
86
|
}
|
|
81
87
|
|
|
82
88
|
export interface IOverlayHotkey {
|
package/package.json
CHANGED