64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
import { type ExtractPropTypes } from 'vue';
|
|
export declare const textEllipsisProps: {
|
|
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;
|
|
};
|
|
};
|
|
export type TextEllipsisProps = ExtractPropTypes<typeof textEllipsisProps>;
|
|
declare const _default: 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<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 _default;
|