52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
export declare const TextEllipsis: import("../utils").WithInstall<import("vue").DefineComponent<{
|
|
rows: {
|
|
type: (NumberConstructor | StringConstructor)[];
|
|
default: number;
|
|
};
|
|
content: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
expandText: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
collapseText: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clickAction"[], "clickAction", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
rows: {
|
|
type: (NumberConstructor | StringConstructor)[];
|
|
default: number;
|
|
};
|
|
content: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
expandText: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
collapseText: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
}>> & {
|
|
onClickAction?: ((...args: any[]) => any) | undefined;
|
|
}, {
|
|
content: string;
|
|
rows: string | number;
|
|
expandText: string;
|
|
collapseText: string;
|
|
}>>;
|
|
export default TextEllipsis;
|
|
export { textEllipsisProps } from './TextEllipsis';
|
|
export type { TextEllipsisProps } from './TextEllipsis';
|
|
export type { TextEllipsisThemeVars } from './types';
|
|
declare module 'vue' {
|
|
interface GlobalComponents {
|
|
VanTextEllipsis: typeof TextEllipsis;
|
|
}
|
|
}
|