如何在具有TypeScript接口的React组件中描述该方法?

时间:2018-09-14 08:55:29

标签: reactjs typescript

我是一名带打字稿的新生。我在代码中不了解此错误。 enter image description here

我使用IProps来描述班级的道具。为什么打字稿检查此类的方法?我该如何解决这个问题?

    export interface IProps extends FormComponentProps {
      dispatch: Dispatch<any>;
      loading: any;
    }

    @Form.create()
    @connect(({ global, loading }) => ({ global, loading }))
    export default class MessageBoard extends PureComponent<IProps> {
      state = {
        activated: false,
      };

      deactivate = () => {
        this.setState({ activated: true });
      };
      ...
      render() {
        ...
        return (...);
      }
    }

0 个答案:

没有答案