index.d.ts 340 B

123456
  1. import useNotification from './hooks/useNotification';
  2. import Notice from './Notice';
  3. import type { NotificationAPI, NotificationConfig } from './hooks/useNotification';
  4. import NotificationProvider from './NotificationProvider';
  5. export { useNotification, Notice, NotificationProvider };
  6. export type { NotificationAPI, NotificationConfig };