UNPKG

decent-sdk

Version:

SDK for the Decent API

9 lines (8 loc) 304 B
import { Health } from '../../core/types/Api'; import { QueryReturn } from '../types'; /** * React hook to fetch API health status. * * @returns {QueryReturn<Health>} Object with { data: Health, loading: boolean, error: Error | null } */ export declare const useApiHealth: () => QueryReturn<Health>;