UNPKG

281 BTypeScriptView Raw
1import { QueryConfig, QueryResult } from 'react-query';
2
3export type CurrentRegion = {
4 code: string;
5 value: string;
6};
7
8declare function useCurrentRegion(
9 options?: QueryConfig<CurrentRegion, unknown>
10): QueryResult<CurrentRegion, unknown>;
11
12export default useCurrentRegion;