mindmime's picture
Upload folder using huggingface_hub
a03b3ba verified
raw
history blame contribute delete
No virus
287 Bytes
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 }[];