index.ts 324 B

1234567891011
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { WorkflowNodeSchema } from '@schema/node';
  6. import { FlowGramNode } from '@node/constant';
  7. interface ContinueNodeData {}
  8. export type ContinueNodeSchema = WorkflowNodeSchema<FlowGramNode.Continue, ContinueNodeData>;