@availity/hooks
Version:
A group of pre-built hooks that are common in most apps
13 lines (9 loc) • 305 B
TypeScript
import { UseQueryOptions, UseQueryResult } from '@tanstack/react-query';
export type CurrentRegion = {
code: string;
value: string;
};
declare function useCurrentRegion(
options?: UseQueryOptions<CurrentRegion, unknown>
): UseQueryResult<CurrentRegion, unknown>;
export default useCurrentRegion;