fix: runtime 添加 d.ts

This commit is contained in:
winixt 2022-09-29 15:18:51 +08:00
parent a9b3e228e2
commit 2e7552ab15
2 changed files with 22 additions and 2 deletions

View File

@ -31,5 +31,6 @@
},
"dependencies": {
"vue-router": "^4.0.1"
}
}
},
"typings": "./types.d.ts"
}

19
packages/fes-runtime/types.d.ts vendored Normal file
View File

@ -0,0 +1,19 @@
declare module "@fesjs/fes" {
export {
useRoute,
useRouter,
onBeforeRouteUpdate,
onBeforeRouteLeave,
RouterLink,
RouterView,
useLink,
createWebHashHistory,
createWebHistory,
createMemoryHistory,
createRouter,
} from 'vue-router';
export { default as Plugin, ApplyPluginsType } from './plugin';
}