File size: 287 Bytes
0ad74ed |
1 2 3 4 5 6 7 8 |
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 }[];
|