From 4fecee6e9c35dc702deda3edefef4e318753fd17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E8=89=B3=E5=85=B5?= Date: Thu, 14 May 2026 23:04:28 +0800 Subject: [PATCH] fix: export notification list types --- src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.ts b/src/index.ts index 8bd5e67..9dc6b1c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,8 @@ import Progress from './Progress'; import Notification from './Notification'; import NotificationList from './NotificationList'; import type { ComponentsType, NotificationProps } from './Notification'; +import type { NotificationListConfig } from './NotificationList'; +import type { StackConfig } from './hooks/useStack'; import type { NotificationProgressProps } from './Progress'; export { useNotification, NotificationProvider, Progress, Notification, NotificationList }; @@ -13,5 +15,7 @@ export type { NotificationConfig, ComponentsType, NotificationProps, + NotificationListConfig, NotificationProgressProps, + StackConfig, };