diff --git a/src/@types/library/vue-router.d.ts b/src/@types/library/vue-router.d.ts new file mode 100644 index 0000000..519025d --- /dev/null +++ b/src/@types/library/vue-router.d.ts @@ -0,0 +1,4 @@ +import Vue from "vue"; +import { RawLocation } from "vue-router"; + +export type Next = (to?: RawLocation | false | ((vm: V) => any) | void) => void;