We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/alibaba/hooks/blob/master/packages/use-url-state/src/index.ts#L33 从 url 取到的值应该都为 string 避免 any 情况的发生
type State = Partial<{ [key in keyof S]: any }>; 可以修改为 type State = Partial<{ [key in keyof S]: string }>;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/alibaba/hooks/blob/master/packages/use-url-state/src/index.ts#L33
从 url 取到的值应该都为 string 避免 any 情况的发生
The text was updated successfully, but these errors were encountered: