index.d.ts 401 B

123456789
  1. import Popover from './src/popover.vue';
  2. import PopoverDirective from './src/directive';
  3. import type { SFCWithInstall } from 'element-plus/es/utils';
  4. export declare const ElPopoverDirective: SFCWithInstall<typeof PopoverDirective>;
  5. export declare const ElPopover: SFCWithInstall<typeof Popover> & {
  6. directive: typeof ElPopoverDirective;
  7. };
  8. export default ElPopover;
  9. export * from './src/popover';