GamePortrait/node_modules/vant/lib/contact-list/index.d.ts

26 lines
1.4 KiB
TypeScript

export declare const ContactList: import("../utils").WithInstall<import("vue").DefineComponent<{
list: import("vue").PropType<import("./ContactList").ContactListItem[]>;
addText: StringConstructor;
modelValue: import("vue").PropType<unknown>;
defaultTagText: StringConstructor;
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("select" | "update:modelValue" | "add" | "edit")[], "select" | "update:modelValue" | "add" | "edit", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
list: import("vue").PropType<import("./ContactList").ContactListItem[]>;
addText: StringConstructor;
modelValue: import("vue").PropType<unknown>;
defaultTagText: StringConstructor;
}>> & {
onSelect?: ((...args: any[]) => any) | undefined;
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
onEdit?: ((...args: any[]) => any) | undefined;
onAdd?: ((...args: any[]) => any) | undefined;
}, {}>>;
export default ContactList;
export { contactListProps } from './ContactList';
export type { ContactListItem, ContactListProps } from './ContactList';
export type { ContactListThemeVars } from './types';
declare module 'vue' {
interface GlobalComponents {
VanContactList: typeof ContactList;
}
}