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

index.d.ts 215B

12345678910
  1. import * as React from 'react';
  2. export interface ITrendProps {
  3. colorful?: boolean;
  4. flag: 'up' | 'down';
  5. style?: React.CSSProperties;
  6. }
  7. export default class Trend extends React.Component<ITrendProps, any> {}