UNPKG

@availity/hooks

Version:

A group of pre-built hooks that are common in most apps

13 lines (9 loc) 295 B
import { UseQueryOptions, UseQueryResult } from 'react-query'; export type CurrentRegion = { code: string; value: string; }; declare function useCurrentRegion( options?: UseQueryOptions<CurrentRegion, unknown> ): UseQueryResult<CurrentRegion, unknown>; export default useCurrentRegion;