函数作为interface参数定义
无参数无返回
Example 1:
Function that does not take arguments and does not return a value:
interface MyClassProps {
someProp: string;
onChange(): any;
}
class MyClass extends React.Component<MyClassProps, MyClassState> ...
小于 1 分钟