gradio/frontend
1403k
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 