UNPKG
@lincy/tnui-vue3-uniapp
Version:
latest (1.0.23)
1.0.23
1.0.21
TuniaoUI for vue3 uniapp
github.com/lincenying/tuniaoui-vue3-uniapp
lincenying/tuniaoui-vue3-uniapp
@lincy/tnui-vue3-uniapp
/
utils
/
vue
/
typescript.ts
10 lines
(6 loc)
•
227 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
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>