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

index.d.ts 270B

123456789101112
  1. import * as React from 'react';
  2. export interface IGaugeProps {
  3. title: React.ReactNode;
  4. color?: string;
  5. height: number;
  6. bgColor?: number;
  7. percent: number;
  8. style?: React.CSSProperties;
  9. }
  10. export default class Gauge extends React.Component<IGaugeProps, any> {}