Files
WAI_Project_VUE/node_modules/@vue/test-utils/dist/createInstance.d.ts
2025-11-24 23:24:06 +08:00

8 lines
358 B
TypeScript

import { DefineComponent } from 'vue';
import { MountingOptions } from './types';
export declare function createInstance(inputComponent: DefineComponent<{}, {}, any, any, any, any>, options?: MountingOptions<any> & Record<string, any>): {
app: import("vue").App<Element>;
props: Record<string, unknown>;
componentRef: import("vue").Ref<null>;
};