12345678 |
- export const countriesQueryKeys = {
- getSlow: (token: string) => ['getSlow', { token }] as const,
- setSlow: () => ['setSlow'] as const,
- getCountryData: (id: number, token?: string) => ['getCountryData', id, token] as const,
- getUsersFromCountry: () => ['getUsersFromCountry'] as const,
- getUsersWhoVisitedCountry: () => ['getUsersWhoVisitedCountry'] as const,
- getCountryUserData: () => ['getCountryUserData'] as const
- };
|