CoolFace
Datasetpublic

gradio/frontend

sourceHugging Faceupdated 17h agoView on Hugging Face
1likes413kdownloads
types.ts22 linesDownload Raw Back to plot
1import type { SelectData } from "@gradio/utils";2import type { LoadingStatus } from "@gradio/statustracker";3 4export type ThemeMode = "system" | "light" | "dark";5 6export interface PlotProps {7	value: null | string;8	theme_mode: ThemeMode;9	caption: string;10	bokeh_version: string | null;11	show_actions_button: boolean;12	_selectable: boolean;13	x_lim: [number, number] | null;14	show_fullscreen_button: boolean;15}16 17export interface PlotEvents {18	change: never;19	select: SelectData;20	clear_status: LoadingStatus;21}22 
gradio/frontend · CoolFace