UNPKG

y-design-ssr

Version:

SSR component library of YUI with Vue3

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