opencand.ui/src/api/index.ts

16 lines
404 B
TypeScript

// Export the main API client and types
export { OpenCandApi, openCandApi } from './openCandApi';
export type {
CandidateSearchResult,
Candidate,
CandidateDetails,
Election,
CandidateAssets,
Asset,
PlatformStats,
} from './openCandApi';
// Export base API classes for custom implementations
export { BaseApiClient, ApiError } from './base';
export type { ApiRequestConfig } from './base';