mirror of
https://github.com/langgenius/dify.git
synced 2026-03-16 12:27:42 +08:00
13 lines
249 B
TypeScript
13 lines
249 B
TypeScript
import type { VariableAssignerNodeType } from './types'
|
|
|
|
export const mockData: VariableAssignerNodeType = {
|
|
title: 'Test',
|
|
desc: 'Test',
|
|
type: 'Test',
|
|
output_type: 'string',
|
|
variables: [
|
|
['aaa', 'name'],
|
|
['bbb', 'b', 'c'],
|
|
],
|
|
}
|