| 1234567891011121314 |
- /**
- * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
- * SPDX-License-Identifier: MIT
- */
- import { definePluginCreator } from '@flowgram.ai/core';
- import { HoverLayer } from './hover-layer';
- export const createFreeHoverPlugin = definePluginCreator({
- onInit(ctx): void {
- ctx.playground.registerLayer(HoverLayer);
- },
- });
|