Files
runners-calendar/frontend/src/api/index.ts
Anton 83bc603b95
Some checks failed
CI / build-and-test (pull_request) Has been cancelled
feat: /meta для версии в футере и устойчивый разбор JSON
2026-04-08 10:32:52 +03:00

6 lines
364 B
TypeScript

export type { CreateRacePayload, Race, RacesQuery, RaceStatus, UpdateRacePayload } from "./types";
export { ApiError, getApiErrorMessage } from "./errors";
export type { BackendMetaResponse, HealthResponse } from "./health";
export { getBackendMeta, getHealth } from "./health";
export { getRaceById, getRaces, createRace, updateRace, deleteRace } from "./races";