UNPKG

@tuniao/tnui-vue3-uniapp

Version:
10 lines (6 loc) 227 B
import type { AppContext, Plugin, Ref } from 'vue' export type SFCWithInstall<T> = T & Plugin export type SFCInstallWithContext<T> = SFCWithInstall<T> & { _content: AppContext | null } export type MaybeRef<T> = T | Ref<T>