Use @typescript-eslint/semi rule
This commit is contained in:
parent
39d65b136a
commit
fc1cd234d5
36 changed files with 7 additions and 63 deletions
|
@ -13,7 +13,7 @@ type StateProps = ReturnType<typeof mapStateToProps>;
|
|||
interface DispatchProps {
|
||||
dispatch: (action: any) => void,
|
||||
}
|
||||
type Props = StateProps & DispatchProps
|
||||
type Props = StateProps & DispatchProps;
|
||||
|
||||
class Console extends React.Component<Props> {
|
||||
private input: React.RefObject<Input>;
|
||||
|
|
Reference in a new issue