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> {}