fix: add ids in FetchDatasetsParams (#13459)

This commit is contained in:
Wu Tianwei
2025-02-10 12:28:36 +08:00
committed by GitHub
parent 9f3fc7ebf8
commit 33990426c1

View File

@@ -140,9 +140,10 @@ export type FetchDatasetsParams = {
url: string
params: {
page: number
ids?: string[]
tag_ids?: string[]
limit: number
include_all: boolean
limit?: number
include_all?: boolean
keyword?: string
}
}