@metamask/snaps-sdk
Version:
A library containing the core functionality for building MetaMask Snaps
12 lines • 444 B
JavaScript
/**
* The types of notifications that can be displayed.
*
* - `InApp` - A notification that is displayed in by the MetaMask extension.
* - `Native` - A notification that is displayed by the operating system.
*/
export var NotificationType;
(function (NotificationType) {
NotificationType["InApp"] = "inApp";
NotificationType["Native"] = "native";
})(NotificationType || (NotificationType = {}));
//# sourceMappingURL=notify.mjs.map