import { getFetchUniq } from '@win2win/shared-ui';

export async function fetchUniq<T = any>(route: string, params: Record<string, any>, tokenKey: string) {
  const injectedFetchUniq = getFetchUniq();
  return injectedFetchUniq<T>(route, params, tokenKey);
}
