layui-vue/types/utils/withInstall.d.ts
2024-09-24 17:04:44 +08:00

4 lines
137 B
TypeScript

import { Plugin } from "vue";
export type WithInstallType<T> = T & Plugin;
export declare const withInstall: <T>(comp: T) => T & Plugin;