import type { App, Plugin } from 'vue'
import FlowDesigner from './flow-designer/'


// Pro 版本
const FlowDesignerProComponent: any = FlowDesigner
FlowDesignerProComponent.install = function (app: App, options: any) {
  app.component('FlowDesignerPro', FlowDesignerProComponent)
}


export const FlowDesigner = FlowDesignerProComponent as typeof FlowDesignerProComponent & Plugin
export default FlowDesigner