dify/web/app/components/workflow/nodes/end/mock.ts
2024-02-22 11:04:14 +08:00

19 lines
375 B
TypeScript

import { EndVarType } from './types'
import type { EndNodeType } from './types'
export const mockData: EndNodeType = {
title: 'Test',
desc: 'Test',
type: 'Test',
outputs: {
type: EndVarType.plainText,
plain_text_selector: ['test'],
structured_variables: [
{
variable: 'test',
value_selector: ['aaa', 'name'],
},
],
},
}