feature: infinite scroll (#119)

Add infinite scroll support to app list and dataset list.
This commit is contained in:
Nite Knite
2023-05-20 21:55:47 +08:00
committed by GitHub
parent e8239ae631
commit 4779fcf6f1
12 changed files with 147 additions and 61 deletions

View File

@@ -61,6 +61,10 @@ export type SiteConfig = {
export type AppListResponse = {
data: App[]
has_more: boolean
limit: number
page: number
total: number
}
export type AppDetailResponse = App