index.d.ts 261 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1
import * as React from "react";
2 3 4 5
export interface EllipsisProps {
  tooltip?: boolean;
  length?: number;
  lines?: number;
jim's avatar
jim committed
6
  style?: React.CSSProperties;
jim's avatar
jim committed
7
  className?:string;
8 9 10 11 12 13
}

export default class Ellipsis extends React.Component<
  EllipsisProps,
  any
> {}