UNPKG

@wfrog/vc

Version:

vue3 组件库 vc

7 lines (6 loc) 281 B
import { AppContext, EmitsOptions, Plugin, SetupContext } from 'vue'; export type SFCWithInstall<T> = T & Plugin; export type SFCInstallWithContext<T> = SFCWithInstall<T> & { _context: AppContext | null; }; export type EmitFn<E extends EmitsOptions> = SetupContext<E>['emit'];