/** * Interactive graphie utilities. * * This file exposes a couple functions, but mostly it adds functions to the * `Graphie` prototype for dealing with interactive graphie elements. */ import "../jquery.mobile.vmouse"; import type { Coord } from "../interactive2/types"; export type MouseHandler = (position: Coord) => void;