10 lines
191 B
TypeScript
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 };
|