Files
kiss-firefox/template/externs/webextension_polyfill/notifications/NotificationItem.hx
2025-02-02 18:08:09 -06:00

12 lines
223 B
Haxe

package webextension_polyfill.notifications;
typedef NotificationItem = {
/**
Title of one item of a list notification.
**/
var title : String;
/**
Additional details about this item.
**/
var message : String;
};