12 lines
223 B
Haxe
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;
|
|
}; |