index.d.ts 213 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import * as React from 'react'; export interface TrendProps { colorful?: boolean; flag: 'up' | 'down'; style?: React.CSSProperties; } export default class Trend extends React.Component<TrendProps, any> {}