mirror of https://github.com/langgenius/dify.git
14 lines
309 B
TypeScript
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'],
|
|
],
|
|
}
|