index.d.ts 343 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1
import * as React from "react";
2
export interface NumberInfoProps {
陈帅's avatar
陈帅 committed
3 4 5 6 7 8 9
  title?: React.ReactNode | string;
  subTitle?: React.ReactNode | string;
  total?: React.ReactNode | string;
  status?: "up" | "down";
  theme?: string;
  gap?: number;
  subTotal?: number;
10 11 12
}

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