mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-08-13 01:55:50 -07:00
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import { apiClient } from '../lib/api-client';
|
|
|
|
export type StatsClient = typeof apiClient;
|
|
|
|
export function getStatsClient(): StatsClient {
|
|
return apiClient;
|
|
}
|