mirror of
https://github.com/langgenius/dify.git
synced 2026-01-08 07:14:14 +00:00
20 lines
429 B
TypeScript
20 lines
429 B
TypeScript
import { BlockEnum } from '../../types'
|
|
import { EndVarType } from './types'
|
|
import type { EndNodeType } from './types'
|
|
|
|
export const mockData: EndNodeType = {
|
|
title: 'End',
|
|
desc: 'Test',
|
|
type: BlockEnum.End,
|
|
outputs: {
|
|
type: EndVarType.structured,
|
|
plain_text_selector: ['aaa', 'name'],
|
|
structured_variables: [
|
|
{
|
|
variable: 'test',
|
|
value_selector: ['aaa', 'name'],
|
|
},
|
|
],
|
|
},
|
|
}
|