UNPKG

whale-plus

Version:

A Component Library for Vue 3

6 lines (5 loc) 188 B
import type { AppContext, Plugin } from 'vue'; export type SFCWithInstall<T> = T & Plugin; export type SFCInstallWithContext<T> = SFCWithInstall<T> & { _context: AppContext | null; };