ether-admin/node_modules/ant-design-vue/lib/typography/util.d.ts

12 lines
333 B
TypeScript

import type { VNodeTypes } from 'vue';
interface Option {
rows: number;
suffix?: string;
}
declare const _default: (originElement: HTMLElement, option: Option, content: string, fixedContent: VNodeTypes[], ellipsisStr: string) => {
content: VNodeTypes;
text: string;
ellipsis: boolean;
};
export default _default;