mirror of
https://github.com/langgenius/dify.git
synced 2026-07-31 09:19:29 +08:00
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
export const ValidatedStatus = {
|
|
Success: 'success',
|
|
Error: 'error',
|
|
Exceed: 'exceed',
|
|
} as const
|
|
|
|
export type ValidatedStatus = typeof ValidatedStatus[keyof typeof ValidatedStatus]
|