UNPKG

element-plus

Version:

A Component Library for Vue 3

6 lines (5 loc) 473 B
import type { SFCInstallWithContext, SFCWithInstall } from './typescript'; export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E | undefined) => SFCWithInstall<T> & E; export declare const withInstallFunction: <T>(fn: T, name: string) => SFCInstallWithContext<T>; export declare const withInstallDirective: <T>(directive: T, name: string) => SFCWithInstall<T>; export declare const withNoopInstall: <T>(component: T) => SFCWithInstall<T>;