index.ts 475 Bytes
/*
 * @Date: 2023-10-27 09:29:59
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2023-11-13 16:31:31
 * @FilePath: /vue-flow-editor/src/shape/index.ts
 * @Description: 文件描述
 */
import {registerAnchor} from "@/shape/anchor";
import {registerEdge} from "@/shape/edge";
// TAG: 自定义节点
import {registerActivity} from "@/shape/activity";

export function registerShape(G6) {
    registerAnchor(G6)
    registerEdge(G6)
    registerActivity(G6)
}