13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
/**
|
|
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
import type { FlowNodeMeta, FlowNodeRegistry } from '@flowgram.ai/fixed-layout-editor';
|
|
|
|
export const nodeRegistries: FlowNodeRegistry<FlowNodeMeta>[] = [
|
|
{
|
|
type: 'custom',
|
|
},
|
|
];
|