layui-vue/types/utils/withInstall.d.ts

4 lines
145 B
TypeScript
Raw Normal View History

2022-11-14 03:59:26 +00:00
import { Plugin } from "vue";
export declare type WithInstallType<T> = T & Plugin;
export declare const withInstall: <T>(comp: T) => T & Plugin;