react-healthy
Version:
Incrementally check and alert your users to the health of your APIs
11 lines • 382 B
TypeScript
/// <reference types="react" />
import type { RowMessages } from '../../types';
export declare type StatusRowProps = {
name: string;
hasError: boolean;
className?: string;
messages?: RowMessages;
};
export declare function StatusRow({ name, hasError, className, messages, }: StatusRowProps): JSX.Element;
export default StatusRow;
//# sourceMappingURL=index.d.ts.map