3e32ca419a
📊 Benchmark the Runtime / benchmark (pull_request) Successful in 1m45s
🚀 Lint & Test & Deploy / quality (pull_request) Failing after 1m7s
🚀 Lint & Test & Deploy / test-unit (pull_request) Successful in 35s
🚀 Lint & Test & Deploy / test-e2e (pull_request) Successful in 2m4s
🚀 Lint & Test & Deploy / deploy (pull_request) Has been skipped
15 lines
261 B
TypeScript
15 lines
261 B
TypeScript
export const groupNode = {
|
|
id: '__internal/group/instance',
|
|
meta: { title: 'Group' },
|
|
inputs: {
|
|
groupId: {
|
|
label: '',
|
|
type: 'select',
|
|
values: []
|
|
}
|
|
},
|
|
execute(_data: Int32Array): Int32Array {
|
|
return _data;
|
|
}
|
|
} as const;
|