gradio-pr-bot's picture
Upload folder using huggingface_hub
fe03105 verified
import type { LoadingStatus } from "js/statustracker";
export interface JSONProps {
value: any;
open: boolean;
show_indices: boolean;
height: number | string | undefined;
min_height: number | string | undefined;
max_height: number | string | undefined;
theme_mode: "system" | "light" | "dark";
buttons: string[];
}
export interface JSONEvents {
change: never;
clear_status: LoadingStatus;
}