typescript.ts 186 B

1234567
  1. import type { AppContext, Plugin } from 'vue'
  2. export type SFCWithInstall<T> = T & Plugin
  3. export type SFCInstallWithContext<T> = SFCWithInstall<T> & {
  4. _context: AppContext | null
  5. }