dify/web/app/components/workflow/nodes/variable-assigner/mock.ts

14 lines
309 B
TypeScript

import { BlockEnum } from '../../types'
import type { VariableAssignerNodeType } from './types'
export const mockData: VariableAssignerNodeType = {
title: 'Test',
desc: 'Test',
type: BlockEnum.VariableAssigner,
output_type: 'string',
variables: [
['aaa', 'name'],
['bbb', 'b', 'c'],
],
}