mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 18:08:07 +08:00
fix: last run not export var and ts problem (#21424)
This commit is contained in:
@ -301,7 +301,7 @@ export type Block = {
|
||||
|
||||
export type NodeDefault<T> = {
|
||||
defaultValue: Partial<T>
|
||||
defaultRunInputData: Record<string, any>
|
||||
defaultRunInputData?: Record<string, any>
|
||||
getAvailablePrevNodes: (isChatMode: boolean) => BlockEnum[]
|
||||
getAvailableNextNodes: (isChatMode: boolean) => BlockEnum[]
|
||||
checkValid: (payload: T, t: any, moreDataForCheckValid?: any) => { isValid: boolean; errorMessage?: string }
|
||||
|
||||
Reference in New Issue
Block a user