index.d.ts 388 Bytes
Newer Older
1 2
import React from 'react';
export interface NumberInfoProps {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
3 4 5
  title?: React.ReactNode | string;
  subTitle?: React.ReactNode | string;
  total?: React.ReactNode | string;
jim's avatar
jim committed
6
  status?: 'up' | 'down';
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
7 8 9
  theme?: string;
  gap?: number;
  subTotal?: number;
10
  suffix?: string;
jim's avatar
jim committed
11
  style?: React.CSSProperties;
12 13
}

14
export default class NumberInfo extends React.Component<NumberInfoProps, any> {}