util.d.ts 333 B

1234567891011
  1. import type { VNodeTypes } from 'vue';
  2. interface Option {
  3. rows: number;
  4. suffix?: string;
  5. }
  6. declare const _default: (originElement: HTMLElement, option: Option, content: string, fixedContent: VNodeTypes[], ellipsisStr: string) => {
  7. content: VNodeTypes;
  8. text: string;
  9. ellipsis: boolean;
  10. };
  11. export default _default;