import type { App } from "vue";
import Interact from "./Interact.vue";
import { BoxState } from "./ts/init";

Interact.install = (Vue: App) =>
  Vue.component(Interact.name ? Interact.name : "Interact", Interact);

export { Interact, BoxState };
