Browse Source

Update index.d.ts

pull/2258/head
iugo 8 years ago
committed by 陈帅
parent
commit
8d75484846
  1. 4
      src/components/Charts/ChartCard/index.d.ts

4
src/components/Charts/ChartCard/index.d.ts

@ -1,5 +1,7 @@
import * as React from 'react';
export interface IChartCardProps {
import { CardProps } from 'antd/lib/card';
export interface IChartCardProps extends CardProps {
title: React.ReactNode;
action?: React.ReactNode;
total?: React.ReactNode | number | (() => React.ReactNode | number);

Loading…
Cancel
Save