UNPKG

climb-onyx-gui

Version:
15 lines (13 loc) 551 B
import { DataProps } from '../interfaces'; import { RecordType, DetailResponse, ErrorResponse } from '../types'; interface DetailsProps extends DataProps { data: DetailResponse<RecordType> | ErrorResponse | undefined; handleErrorModalShow: (error: Error) => void; } interface FieldProps extends DataProps { field: string; } declare function Field(props: FieldProps): import("react/jsx-runtime").JSX.Element; declare function Details(props: DetailsProps): import("react/jsx-runtime").JSX.Element; export default Details; export { Field };