6 lines
211 B
TypeScript
6 lines
211 B
TypeScript
export { BASE_URL, API_GROUP, API_VERSION } from './baseAPI';
|
|
import { generatedAPI as rawAPI } from './endpoints.gen';
|
|
|
|
export * from './endpoints.gen';
|
|
export const generatedAPI = rawAPI.enhanceEndpoints({});
|