UNPKG

dkt-plus

Version:

Decathlon component library built in Vue3 with TypeScript.

6 lines (5 loc) 287 B
import type { Plugin } from "vue"; declare type withInstall<T> = T & Plugin; export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E | undefined) => withInstall<T> & E; export declare const withNoopInstall: <T>(component: T) => withInstall<T>; export {};