mirror of
https://github.com/langgenius/dify.git
synced 2026-03-25 04:49:47 +08:00
19 lines
375 B
TypeScript
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'],
|
|
},
|
|
],
|
|
},
|
|
}
|