CoolFace
Datasetpublic

gradio/frontend

sourceHugging Faceupdated 11h agoView on Hugging Face
1likes403kdownloads
types.ts22 linesDownload Raw Back to code
1import type { CustomButton } from "@gradio/utils";2 3export interface CodeProps {4	value: string;5	language: string;6	max_lines: number;7	wrap_lines: boolean;8	show_line_numbers: boolean;9	autocomplete: boolean;10	lines: number;11	buttons: (string | CustomButton)[] | null;12}13 14export interface CodeEvents {15	change: any;16	input: any;17	focus: any;18	blur: any;19	clear_status: any;20	custom_button_click: { id: number };21}22 
gradio/frontend · CoolFace