Skip to content

Commit 5803821

Browse files
committed
Applied diff from pr #64
1 parent 4dd9568 commit 5803821

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

overwolf.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6376,8 +6376,8 @@ declare namespace overwolf.settings.hotkeys {
63766376
}
63776377

63786378
interface UpdateHotkeyObject extends UnassignHotkeyObject {
6379-
customModifierKeyCode: number;
6380-
isPassThrough: boolean;
6379+
customModifierKeyCode?: number;
6380+
isPassThrough?: boolean;
63816381
}
63826382

63836383
/**
@@ -6386,16 +6386,16 @@ declare namespace overwolf.settings.hotkeys {
63866386
function get(callback: CallbackFunction<GetAssignedHotkeyResult>): void;
63876387

63886388
/**
6389-
* Set hotkey for current extension
6390-
*/
6389+
* Assign global hotkey for the current extension, OR, if a gameId is specified, assign/unassign a dedicated hotkey.
6390+
*/
63916391
function assign(
63926392
hotkey: AssignHotkeyObject,
63936393
callback: CallbackFunction<Result>
63946394
): void;
63956395

63966396
/**
6397-
* unassign hotkey for current extension
6398-
*/
6397+
* Unassign global hotkey for the current extension, OR, if a gameId is specified, assign/unassign a dedicated hotkey.
6398+
*/
63996399
function unassign(
64006400
hotkey: UnassignHotkeyObject,
64016401
callback: CallbackFunction<Result>

0 commit comments

Comments
 (0)