free-imui-neo
Version:
基于VUE3实现的即时通讯UI组件
14 lines • 377 B
TypeScript
import { App } from "vue";
declare type EventShim = {
new (...args: any[]): {
$props: {
onClick?: (...args: any[]) => void;
};
};
};
export declare type WithInstall<T> = T & {
install(app: App): void;
} & EventShim;
export declare function withInstall<T>(options: T): WithInstall<T>;
export {};
//# sourceMappingURL=with-install.d.ts.map