layui-vue/types/utils/withInstall.d.ts
2022-11-14 11:59:26 +08:00

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;