import type { InjectionKey, Ref } from 'vue' import type { FlowSlots, 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')