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

4 lines
137 B
TypeScript
Raw Normal View History

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