kui-vue
Version:
A lightweight desktop UI component library suitable for Vue.js 2.
26 lines (21 loc) • 610 B
TypeScript
import Vue, { VueConstructor } from "vue";
/** Popconfirm component props */
export interface PopconfirmProps {
dark?: boolean;
show?: boolean;
title?: string | number | Record<string, any> | any[];
size?: string;
width?: number | string;
okText?: string;
cancelText?: string;
/** default: top */
placement?: any;
}
/** Popconfirm component instance */
export interface Popconfirm extends Vue {
$props: PopconfirmProps;
$emit(event: string, ...args: any[]): void;
}
/** Popconfirm Vue component type */
declare const Popconfirm: VueConstructor<Popconfirm>;
export default Popconfirm;