UNPKG

358 BTypeScriptView Raw
1import { DefineComponent } from 'vue';
2import { MountingOptions } from './types';
3export declare function createInstance(inputComponent: DefineComponent<{}, {}, any, any, any, any>, options?: MountingOptions<any> & Record<string, any>): {
4 app: import("vue").App<Element>;
5 props: Record<string, unknown>;
6 componentRef: import("vue").Ref<null>;
7};