40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
export declare const ContactCard: import("../utils").WithInstall<import("vue").DefineComponent<{
|
|
tel: StringConstructor;
|
|
name: StringConstructor;
|
|
type: {
|
|
type: import("vue").PropType<import("./ContactCard").ContactCardType>;
|
|
default: import("./ContactCard").ContactCardType;
|
|
};
|
|
addText: StringConstructor;
|
|
editable: {
|
|
type: BooleanConstructor;
|
|
default: true;
|
|
};
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
tel: StringConstructor;
|
|
name: StringConstructor;
|
|
type: {
|
|
type: import("vue").PropType<import("./ContactCard").ContactCardType>;
|
|
default: import("./ContactCard").ContactCardType;
|
|
};
|
|
addText: StringConstructor;
|
|
editable: {
|
|
type: BooleanConstructor;
|
|
default: true;
|
|
};
|
|
}>> & {
|
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
}, {
|
|
type: import("./ContactCard").ContactCardType;
|
|
editable: boolean;
|
|
}>>;
|
|
export default ContactCard;
|
|
export { contactCardProps } from './ContactCard';
|
|
export type { ContactCardType, ContactCardProps } from './ContactCard';
|
|
export type { ContactCardThemeVars } from './types';
|
|
declare module 'vue' {
|
|
interface GlobalComponents {
|
|
VanContactCard: typeof ContactCard;
|
|
}
|
|
}
|