initial-data.ts 404 B

1234567891011121314151617181920212223
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import type { FlowDocumentJSON } from '@flowgram.ai/fixed-layout-editor';
  6. export const initialData: FlowDocumentJSON = {
  7. nodes: [
  8. {
  9. id: 'start_0',
  10. type: 'start',
  11. },
  12. {
  13. id: 'custom_1',
  14. type: 'custom',
  15. },
  16. {
  17. id: 'end_2',
  18. type: 'end',
  19. },
  20. ],
  21. };