UNPKG

@nutui/nutui

Version:

京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)

6 lines (5 loc) 194 B
import type { App, Component } from 'vue'; export type WithInstall<T> = T & { install(app: App): void; }; export declare const withInstall: <T extends Component>(comp: T) => WithInstall<T>;