Skip to content

Commit

Permalink
fix: alter the type of Connector props and status to any
Browse files Browse the repository at this point in the history
  • Loading branch information
wewoor authored and mumiao committed Mar 16, 2021
1 parent b9fed09 commit 53fc63e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/react/connector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function connect(
Controller?: Controller | ControllerObject,
watchFiled?: object
) {
return class Connector extends React.Component {
return class Connector extends React.Component<any, any> {
state: { lastUpdated: number };
constructor(props) {
super(props);
Expand Down

0 comments on commit 53fc63e

Please sign in to comment.