layui/.svn/pristine/bb/bba4bac7c500a807382beaeb2d50b4eae9bd43a9.svn-base
2022-12-09 16:41:41 +08:00

4 lines
145 B
Plaintext

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