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;