mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
2a5b9e03b1
* adding precision to df * add changeset * docstring * precision * add changeset * fix * fixes * add changeset * add visual test * lint * fixes * lint * format * add changeset * ts changes * analytics * dataframe typing * typing * demo * fix * lint * interactive dataframe * dataframe * fix typing * add test * upgrade pandas version * fix pandas version --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
8 lines
287 B
TypeScript
8 lines
287 B
TypeScript
export type Headers = string[];
|
|
export type Data = (string | number)[][];
|
|
export type Datatype = "str" | "markdown" | "html" | "number" | "bool" | "date";
|
|
export type Metadata = {
|
|
[key: string]: string[][] | null;
|
|
} | null;
|
|
export type HeadersWithIDs = { value: string; id: string }[];
|