mirror of
https://github.com/langgenius/dify.git
synced 2025-07-13 20:21:37 +00:00
18 lines
342 B
TypeScript
18 lines
342 B
TypeScript
![]() |
export type DataSourceNodeProcessingResponse = {
|
||
|
event: 'datasource_processing'
|
||
|
total: number
|
||
|
completed: number
|
||
|
}
|
||
|
|
||
|
export type DataSourceNodeError = {
|
||
|
event: 'datasource_error'
|
||
|
message: string
|
||
|
code?: string
|
||
|
}
|
||
|
|
||
|
export type DataSourceNodeCompletedResponse = {
|
||
|
event: 'datasource_completed'
|
||
|
data: any
|
||
|
time_consuming?: number
|
||
|
}
|