mirror of
https://github.com/langgenius/dify.git
synced 2026-04-05 10:12:43 +08:00
Signed-off-by: yyh <yuanyouhuilyz@gmail.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: CodingOnStar <hanxujiang@dify.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Coding On Star <447357187@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: -LAN- <laipz8200@outlook.com> Co-authored-by: statxc <tyleradams93226@gmail.com>
13 lines
451 B
TypeScript
13 lines
451 B
TypeScript
import type { DerivedModelStatus } from '../derive-model-status'
|
|
import {
|
|
DERIVED_MODEL_STATUS_BADGE_I18N,
|
|
DERIVED_MODEL_STATUS_TOOLTIP_I18N,
|
|
deriveModelStatus,
|
|
} from '../derive-model-status'
|
|
|
|
export type TriggerStatus = DerivedModelStatus
|
|
|
|
export const deriveTriggerStatus = deriveModelStatus
|
|
export const TRIGGER_STATUS_BADGE_I18N = DERIVED_MODEL_STATUS_BADGE_I18N
|
|
export const TRIGGER_STATUS_TOOLTIP_I18N = DERIVED_MODEL_STATUS_TOOLTIP_I18N
|