You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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>;
};