| 2 | import type { ILoadingStatus as LoadingStatus } from "@gradio/statustracker"; |
| 3 | |
| 4 | export interface PlotData { |
| 5 | columns: string[]; |
| 6 | data: (string | number)[][]; |
| 7 | datatypes: Record<string, "quantitative" | "temporal" | "nominal">; |
| 8 | mark: "line" | "point" | "bar"; |
| 9 | } |
| 10 | |
| 11 | export interface NativePlotProps { |
| 12 | value: PlotData | null; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…