Files
hollywoo-sourcer/externs/webextension_polyfill/notifications/NotificationItem.hx

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;
};