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

index.d.ts 272B

12345678910111213
  1. import * as React from 'react';
  2. export interface IMiniBarProps {
  3. color?: string;
  4. height: number;
  5. data: Array<{
  6. x: number | string;
  7. y: number;
  8. }>;
  9. style?: React.CSSProperties;
  10. }
  11. export default class MiniBar extends React.Component<IMiniBarProps, any> {}