Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions overwolf.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1058,6 +1058,8 @@ declare namespace overwolf.notifications {
* Buttons make your toast interactive, letting the user take quick actions on your toast notification without interrupting their current workflow. Buttons appear in the expanded portion of your notification.
*/
buttons?: ToastNotificationButton[];
launch?: string;
activationType?: 'protocol' | 'foreground' | 'background';
}

interface LogoOverride {
Expand All @@ -1068,6 +1070,8 @@ declare namespace overwolf.notifications {
interface ToastNotificationButton {
id: string;
text: string;
launch?: string;
activationType?: 'protocol' | 'foreground' | 'background';
}

interface ShowToastNotificationResult extends Result {
Expand Down