frontend / 6.2.0 /code /types.ts
gradio-pr-bot's picture
Upload folder using huggingface_hub
bd02e75 verified
import type { CustomButton } from "@gradio/utils";
export interface CodeProps {
value: string;
language: string;
max_lines: number;
wrap_lines: boolean;
show_line_numbers: boolean;
autocomplete: boolean;
lines: number;
buttons: (string | CustomButton)[] | null;
}
export interface CodeEvents {
change: any;
input: any;
focus: any;
blur: any;
clear_status: any;
custom_button_click: { id: number };
}