Skip to content

Commit

Permalink
update interface
Browse files Browse the repository at this point in the history
  • Loading branch information
thinknoack committed Jan 15, 2025
1 parent 6a42707 commit afb551d
Showing 1 changed file with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,17 @@ interface Dataset {
name: string
public: boolean
analytics: {
downloads?: number
views?: number
views: number
downloads: number
}
stars: [{ userId: string; datasetId: string }]
followers: [{ userId: string; datasetId: string }]
latestSnapshot?: {
id: string
size: number
issues: [{ severity: string }]
created?: string
}
followers: [string]
stars: [string]
}

interface DatasetCardProps {
Expand Down

0 comments on commit afb551d

Please sign in to comment.