mirror of
https://github.com/langgenius/dify.git
synced 2026-09-21 13:20:52 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
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]
|