UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

13 lines (12 loc) 542 B
import type { Ref } from 'vue'; import type { MergedTheme } from '../../_mixins'; import type { PopoverInst } from '../../popover'; import type { PopconfirmTheme } from '../styles'; import type { PopconfirmSetupProps } from './Popconfirm'; export type PopconfirmInst = PopoverInst; export interface PopconfirmInjection { mergedThemeRef: Ref<MergedTheme<PopconfirmTheme>>; mergedClsPrefixRef: Ref<string>; props: PopconfirmSetupProps; } export declare const popconfirmInjectionKey: import("vue").InjectionKey<PopconfirmInjection>;