1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/ui-components/notifications/index.ts
Gabriel 11e1de50ae chore: resolve comments
Signed-off-by: Gabriel <gaccettola@mirantis.com>
2023-06-01 22:36:49 +02:00

26 lines
1.4 KiB
TypeScript

/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
export type {
NotificationId,
NotificationMessage,
CreateNotificationOptions,
Notification,
NotificationsStore,
} from "./src/notifications.store";
export { NotificationStatus } from "./src/notifications.store";
export type { ShowNotification } from "./src/notifications";
export { Notifications } from "./src/notifications";
export { notificationsClusterFrameChildComponentInjectable } from "./src/notifications-cluster-frame-child-component.injectable";
export { notificationsRootFrameChildComponentInjectable } from "./src/notifications-root-frame-child-component.injectable";
export { notificationsStoreInjectable } from "./src/notifications-store.injectable";
export type { ShowCheckedErrorNotification } from "./src/show-checked-error.injectable";
export { showCheckedErrorNotificationInjectable } from "./src/show-checked-error.injectable";
export { showErrorNotificationInjectable } from "./src/show-error-notification.injectable";
export { showInfoNotificationInjectable } from "./src/show-info-notification.injectable";
export { showShortInfoNotificationInjectable } from "./src/show-short-info.injectable";
export { showSuccessNotificationInjectable } from "./src/show-success-notification.injectable";
export { notificationsFeature } from "./src/feature";