@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
20 lines (18 loc) • 735 B
JavaScript
/**
* Type definition of Client Notification.
*/
export var ClientNotificationType;
(function (ClientNotificationType) {
/**
* Display at the notification center. Using the ID, it can update the single notification.
*/
ClientNotificationType[ClientNotificationType["NotificationCenter"] = 0] = "NotificationCenter";
/**
* @deprecated
*
* All notification should go through NotificationCenter
* Display as alert bar. ID will be ignored, and doesn't retain the notification instance and state.
*/
ClientNotificationType[ClientNotificationType["AlertBar"] = 1] = "AlertBar";
})(ClientNotificationType || (ClientNotificationType = {}));
//# sourceMappingURL=client-notification.js.map