index.d.ts 241 Bytes
Newer Older
jim's avatar
jim committed
1
import * as React from 'react';
2

jim's avatar
jim committed
3
export interface ITrendProps {
4
  colorful?: boolean;
jim's avatar
jim committed
5 6
  flag: 'up' | 'down';
  style?: React.CSSProperties;
jim's avatar
jim committed
7
  reverseColor?: boolean;
8 9
}

jim's avatar
jim committed
10
export default class Trend extends React.Component<ITrendProps, any> {}