mirror of
https://github.com/langgenius/dify.git
synced 2025-09-17 05:03:45 +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
|
|
}
|