mirror of
https://gitee.com/ByteDance/flowgram.ai.git
synced 2025-07-07 17:43:29 +08:00
* chore: add license-header * chore: add precommit * chore: add license header * fix: only js & shell style
46 lines
820 B
TypeScript
46 lines
820 B
TypeScript
/**
|
|
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
import { FlowDocumentJSON } from '@flowgram.ai/fixed-layout-editor';
|
|
|
|
export const multiInputs: FlowDocumentJSON = {
|
|
nodes: [
|
|
{
|
|
id: 'multiInputs_0',
|
|
type: 'multiInputs',
|
|
blocks: [
|
|
{
|
|
id: 'input_0',
|
|
type: 'input',
|
|
data: {
|
|
title: 'input_0',
|
|
},
|
|
},
|
|
{
|
|
id: 'input_1',
|
|
type: 'input',
|
|
data: {
|
|
title: 'input_1',
|
|
},
|
|
},
|
|
{
|
|
id: 'input_3',
|
|
type: 'input',
|
|
data: {
|
|
title: 'input_3',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
id: 'end_0',
|
|
type: 'end',
|
|
data: {
|
|
title: 'End',
|
|
},
|
|
},
|
|
],
|
|
};
|