We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
19ce003
Adds RequestFn type that helps add static typing to reusable hooks. Example:
import useSWR, { RequestFn } from 'swr-micro' export const useUrl: RequestFn = (url, config) => { return useSWR('https://api.com' + url, config) }
e44affb
Merge pull request #1 from danybeltran/feat-typing Feat typing