index.d.ts 332 B

12345678910
  1. import { Dialog } from './function-call';
  2. export default Dialog;
  3. export { Dialog };
  4. export type { DialogProps } from './Dialog';
  5. export type { DialogTheme, DialogMessage, DialogOptions, DialogMessageAlign, } from './types';
  6. declare module 'vue' {
  7. interface GlobalComponents {
  8. VanDialog: typeof Dialog.Component;
  9. }
  10. }