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