UNPKG
fant-mini-plus
Version:
latest (0.1.17)
0.1.17
0.1.16
0.1.15
0.1.14
0.1.13
0.1.12
0.1.11
0.1.10
0.1.9
0.1.8
fant-mini-plus是一个基于Vue3和TypeScript的uni-app高效UI组件库,提供丰富的组件和样式,帮助开发者快速构建高质量的移动应用。
fant-mini-plus
/
components
/
hd-popup
/
index.d.ts
10 lines
(9 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
type
InjectionKey
,
type
Ref
}
from
'vue'
;
import
type
{
Popup
}
from
'./types'
;
/** * usePopup 用到的key * *
@internal
*/
export
declare
const
popupDefaultKey
:
InjectionKey
<
Ref
<
boolean
>>;
export
declare
function
usePopup
(
selector
?:
string
):
Popup
;