climb-onyx-gui
Version:
Onyx Graphical User Interface
15 lines (13 loc) • 551 B
TypeScript
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 };