explorer/src/components/default/JSONPopup/JSONPopup.props.ts
2024-06-26 17:16:01 +03:00

12 lines
No EOL
298 B
TypeScript

import { Dispatch, SetStateAction } from "react";
interface JSONPopupProps {
popupState: boolean;
setPopupState: Dispatch<SetStateAction<boolean>>;
json: Object;
bottomContent?: React.ReactElement;
onClose?: () => void;
hideJson?: boolean;
}
export default JSONPopupProps;