UNPKG

vue-gantt-3

Version:

A gantt component for Vue 3

7 lines (6 loc) 298 B
import { AppContext, Plugin } from 'vue'; export type SFCWithInstall<T> = T & Plugin; export type SFCInstallWithContext<T> = SFCWithInstall<T> & { _context: AppContext | null; }; export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E) => SFCWithInstall<T> & E;