create-free-hover-plugin.ts 339 B

1234567891011121314
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { definePluginCreator } from '@flowgram.ai/core';
  6. import { HoverLayer } from './hover-layer';
  7. export const createFreeHoverPlugin = definePluginCreator({
  8. onInit(ctx): void {
  9. ctx.playground.registerLayer(HoverLayer);
  10. },
  11. });