extends-vue.d.ts 553 B

12345678910111213141516171819202122
  1. import VueOrigin from "vue";
  2. // import Palfish from "@/utils/palfish";
  3. // import Toast from "@ipalfish/ui/Toast";
  4. // import Mcad from "@/utils/fitContainer";
  5. declare module "vue/types/vue" {
  6. export default interface Vue extends VueOrigin {
  7. _uid: number;
  8. $store: Store<GlobalStoreState>;
  9. // search: ParsedQs;
  10. // $toast: Toast;
  11. // $mCad: typeof Mcad;
  12. // $sendLog: typeof Palfish.sendLog;
  13. // $checkLogin: Palfish.checkLogin;
  14. // $captureMessage: (msg: Docs) => void;
  15. // $jumpToLogin: (url?: string) => void;
  16. }
  17. }