yanzhen-design-vue
Version:
84 lines (83 loc) • 2.26 kB
TypeScript
declare function __VLS_template(): {
slots: {
icon?(_: {}): any;
"delete-button"?(_: {}): any;
};
refs: {};
attrs: Partial<{}>;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
showOrganizationName: {
type: BooleanConstructor;
required: boolean;
default: boolean;
};
messageOperatesPopPosition: {
type: StringConstructor;
default: () => string;
};
itemData: {
type: ObjectConstructor;
default: () => {};
};
taskID: {
type: StringConstructor;
default: () => string;
};
commentType: {
type: StringConstructor;
default: string;
};
accountID: {
type: StringConstructor;
required: boolean;
};
}>, {
handleReply: () => void;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
delete: (val: any) => void;
download: (val: any) => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
showOrganizationName: {
type: BooleanConstructor;
required: boolean;
default: boolean;
};
messageOperatesPopPosition: {
type: StringConstructor;
default: () => string;
};
itemData: {
type: ObjectConstructor;
default: () => {};
};
taskID: {
type: StringConstructor;
default: () => string;
};
commentType: {
type: StringConstructor;
default: string;
};
accountID: {
type: StringConstructor;
required: boolean;
};
}>> & Readonly<{
onDelete?: (val: any) => any;
onDownload?: (val: any) => any;
}>, {
showOrganizationName: boolean;
messageOperatesPopPosition: string;
itemData: Record<string, any>;
taskID: string;
commentType: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};