pmtool / src /lib /api /index.ts
devarshia5's picture
Upload 487 files
d97b8f9 verified
Raw
History Blame Contribute Delete
464 Bytes
import apiClient from './axios-instance';
import { get, getList, post, put, patch, del, uploadFile } from './api-utils';
import healthApi, { getSystemHealth, checkHealth, type HealthResponse } from './health';
export {
apiClient,
get,
getList,
post,
put,
patch,
del,
uploadFile,
// Health API exports
healthApi,
getSystemHealth,
checkHealth
};
// Re-export the type with 'export type'
export type { HealthResponse };