mirror of https://github.com/langgenius/dify.git
19 lines
371 B
TypeScript
19 lines
371 B
TypeScript
import type { TemplateTransformNodeType } from './types'
|
|
|
|
export const mockData: TemplateTransformNodeType = {
|
|
title: 'Test',
|
|
desc: 'Test',
|
|
type: 'Test',
|
|
variables: [
|
|
{
|
|
variable: 'name',
|
|
value_selector: ['aaa', 'name'],
|
|
},
|
|
{
|
|
variable: 'age',
|
|
value_selector: ['bbb', 'b', 'c'],
|
|
},
|
|
],
|
|
template: 'print("hello world")',
|
|
}
|