test/node_modules/@vuepress/client/dist/createVueAppFunction-onJTVJ...
2024-08-13 09:27:52 +08:00

10 lines
191 B
TypeScript

import { App } from 'vue';
import { Router } from 'vue-router';
type CreateVueAppFunction = () => Promise<{
app: App;
router: Router;
}>;
export type { CreateVueAppFunction as C };