我有一个扩展React的类。像这样的组件:
class Main extends Component {
static propTypes = {
flavor: string.isRequired,
iceCreamMap: object.isRequired,
restUrl: string.isRequired,
token: string.isRequired,
username: string.isRequired
};
}
我希望Component.prototype的方法显示在intellisense中,但它不起作用。然而,当我这样做时它会起作用。 React.Component.prototype
。