index.ts 308 B

1234567891011121314
  1. export type {
  2. AlertProps,
  3. BeforeCloseScope,
  4. IconType,
  5. PromptProps,
  6. } from './alert';
  7. export { useAlertContext } from './alert';
  8. export { default as Alert } from './alert.vue';
  9. export {
  10. vbenAlert as alert,
  11. clearAllAlerts,
  12. vbenConfirm as confirm,
  13. vbenPrompt as prompt,
  14. } from './AlertBuilder';