mirror of
https://github.com/langgenius/dify.git
synced 2026-05-09 21:28:25 +08:00
9 lines
238 B
TypeScript
9 lines
238 B
TypeScript
export const segmentImportStatus = {
|
|
waiting: 'waiting',
|
|
processing: 'processing',
|
|
completed: 'completed',
|
|
error: 'error',
|
|
} as const
|
|
|
|
export type SegmentImportStatus = typeof segmentImportStatus[keyof typeof segmentImportStatus]
|