wait-node-render.ts 291 B

123456789101112
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { delay } from '@flowgram.ai/free-layout-core';
  6. export type IWaitNodeRender = () => Promise<void>;
  7. export const waitNodeRender: IWaitNodeRender = async () => {
  8. await delay(20);
  9. };