UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

8 lines (6 loc) 265 B
import { App, ComponentOptions } from 'vue'; type InstallableComponent<T> = T & { install?: (app: App) => void; }; export declare function withInstall<T extends ComponentOptions<any, any, any, any, any, any>>(component: T): InstallableComponent<T>; export {};