dylanebert's picture
dylanebert HF staff
code status
3449def
raw
history blame contribute delete
446 Bytes
class Row {
Name: string | null = null;
Orgs: string[] = [];
Authors: string[] = [];
Tags: string[] = [];
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;
Added: string | null = null;
}
export default Row;