4 lines
145 B
TypeScript
4 lines
145 B
TypeScript
|
import { Plugin } from "vue";
|
||
|
export declare type WithInstallType<T> = T & Plugin;
|
||
|
export declare const withInstall: <T>(comp: T) => T & Plugin;
|