user-query-keys.tsx 352 B

1234567
  1. export const userQueryKeys = {
  2. getProfileData: () => ['getProfileData'] as const,
  3. setProfileData: () => ['setProfileData'] as const,
  4. getProfileInfo: () => ['getProfileInfo'] as const,
  5. getProfileInfoPublic: () => ['getProfileInfoPublic'] as const,
  6. getProfileRegions: (uid: number, type: string) => ['getProfileRegions', uid, type] as const
  7. };