import type { Ref, InjectionKey, ComputedRef } from "vue"; import type { DataOrientation } from "./types"; export const MOUSE_X_INJECTION_KEY = Symbol() as InjectionKey>; export const MOUSE_Y_INJECTION_KEY = Symbol() as InjectionKey>; export const MAGNIFICATION_INJECTION_KEY = Symbol() as InjectionKey>; export const DISTANCE_INJECTION_KEY = Symbol() as InjectionKey>; export const ORIENTATION_INJECTION_KEY = Symbol() as InjectionKey;