explorer/src/components/default/JSONPopup/JSONPopup.props.ts

12 lines
298 B
TypeScript
Raw Normal View History

2023-11-04 04:37:13 +07:00
import { Dispatch, SetStateAction } from "react";
interface JSONPopupProps {
popupState: boolean;
setPopupState: Dispatch<SetStateAction<boolean>>;
json: Object;
2024-06-24 16:34:41 +03:00
bottomContent?: React.ReactElement;
2024-06-25 19:36:21 +07:00
onClose?: () => void;
2024-06-26 17:16:01 +03:00
hideJson?: boolean;
2023-11-04 04:37:13 +07:00
}
export default JSONPopupProps;