mirror of
https://github.com/langgenius/dify.git
synced 2026-02-16 07:01:44 -05:00
7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
export const NULL_STRATEGY = {
|
|
RAISE_ERROR: 'raise_error',
|
|
USE_DEFAULT: 'use_default',
|
|
} as const
|
|
|
|
export type NullStrategy = typeof NULL_STRATEGY[keyof typeof NULL_STRATEGY]
|