@metamask/snaps-sdk
Version:
A library containing the core functionality for building MetaMask Snaps
15 lines • 576 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationType = void 0;
/**
* 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.
*/
var NotificationType;
(function (NotificationType) {
NotificationType["InApp"] = "inApp";
NotificationType["Native"] = "native";
})(NotificationType || (exports.NotificationType = NotificationType = {}));
//# sourceMappingURL=notify.cjs.map