hrms-manual/node_modules/@vue/test-utils/dist/createInstance.d.ts

8 lines
358 B
TypeScript
Raw Normal View History

2023-09-06 14:51:44 +07:00
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>;
};