| 12345678910111213141516171819202122 |
- import VueOrigin from "vue";
- // import Palfish from "@/utils/palfish";
- // import Toast from "@ipalfish/ui/Toast";
- // import Mcad from "@/utils/fitContainer";
- declare module "vue/types/vue" {
- export default interface Vue extends VueOrigin {
- _uid: number;
- $store: Store<GlobalStoreState>;
- // search: ParsedQs;
- // $toast: Toast;
- // $mCad: typeof Mcad;
- // $sendLog: typeof Palfish.sendLog;
- // $checkLogin: Palfish.checkLogin;
- // $captureMessage: (msg: Docs) => void;
- // $jumpToLogin: (url?: string) => void;
- }
- }
|