gradio-pr-bot's picture
Upload folder using huggingface_hub
1cab807 verified
export interface ParamViewerProps {
value: Record<
string,
{
type: string;
description: string;
default: string;
}
>;
linkify: string[];
header: string | null;
anchor_links: boolean | string;
max_height: number | string | undefined;
}
export interface ParamViewerEvents {
change: never;
upload: never;
clear_status: never;
}