UNPKG
@extscreen/es3-utils
Version:
latest (0.0.2)
0.0.2
0.0.1
Vue-Next binding for ES native framework
extscreen.com
@extscreen/es3-utils
/
dist
/
src
/
vue
/
typescript.d.ts
6 lines
(5 loc)
•
188 B
TypeScript
View Raw
1
2
3
4
5
6
import
type
{
AppContext
,
Plugin
}
from
'vue'
;
export
type
SFCWithInstall
<T> = T &
Plugin
;
export
type
SFCInstallWithContext
<T> =
SFCWithInstall
<T> & {
_context
:
AppContext
|
null
; };