chenjiawei.inizio cbefaa54fb
chore: add license header (#432)
* chore: add license-header

* chore: add precommit

* chore: add license header

* fix: only js & shell style
2025-07-01 11:53:02 +00:00

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',
},
},
],
};