create-background-plugin.ts 344 B

123456789101112
  1. import { definePluginCreator } from '@flowgram.ai/core';
  2. import { BackgroundLayer, BackgroundLayerOptions } from './background-layer';
  3. /**
  4. * 点位背景插件
  5. */
  6. export const createBackgroundPlugin = definePluginCreator<BackgroundLayerOptions>({
  7. onInit: (ctx, opts) => {
  8. ctx.playground.registerLayer(BackgroundLayer, opts);
  9. },
  10. });