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

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

export default class Trend extends React.Component<TrendProps, any> {}