import type { InjectionKey, Ref, Slots as TSlots } from 'vue' import type { VueFlowStore } from '~/types' export const VueFlow: InjectionKey = Symbol('vueFlow') export const NodeId: InjectionKey = Symbol('nodeId') export const NodeRef: InjectionKey> = Symbol('nodeRef') export const EdgeId: InjectionKey = Symbol('edgeId') export const EdgeRef: InjectionKey> = Symbol('edgeRef') export const Slots: InjectionKey = Symbol('slots')