dylanebert's picture
dylanebert HF Staff
ensure valid arrays
6aa9047
raw
history blame
451 Bytes
class Row {
Name: string | null = null;
Orgs: string[] = [];
Authors: string[] = [];
Tags: string[] = [];
CodeStatus: string | null = null;
Paper: string | null = null;
Code: string | null = null;
Space: string | null = null;
Model: string | null = null;
Dataset: string | null = null;
Project: string | null = null;
License: string | null = null;
Date: string | null = null;
}
export default Row;