index.d.ts 295 B

12345678910
  1. import { Notify } from './function-call';
  2. export default Notify;
  3. export { Notify };
  4. export type { NotifyProps } from './Notify';
  5. export type { NotifyType, NotifyOptions } from './types';
  6. declare module 'vue' {
  7. interface GlobalComponents {
  8. VanNotify: typeof Notify.Component;
  9. }
  10. }