动态菜单和动态路由的 antd pro

index.d.ts 376B

1234567891011121314
  1. import * as React from 'react';
  2. export interface INumberInfoProps {
  3. title?: React.ReactNode | string;
  4. subTitle?: React.ReactNode | string;
  5. total?: React.ReactNode | string;
  6. status?: 'up' | 'down';
  7. theme?: string;
  8. gap?: number;
  9. subTotal?: number;
  10. style?: React.CSSProperties;
  11. }
  12. export default class NumberInfo extends React.Component<INumberInfoProps, any> {}