UNPKG
@ray-js/smart-ui-typings
Version:
beta (1.0.0-beta.0)
latest (1.0.0-beta.0)
1.0.0-beta.0
@ray-js/smart-ui 智能小程序 UI 框架的类型声明文件
@ray-js/smart-ui-typings
/
dist
/
index-anchor
/
index.d.ts
15 lines
(14 loc)
•
327 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{
VantComponent
}
from
'../base'
;
export
interface
VantIndexAnchorProps
{
/** * 是否使用自定义内容的插槽 * *
@default
false
*/
useSlot
?:
boolean
;
/** * 索引字符 */
index
?:
string
|
number
; }
export
type
VantIndexAnchor
=
VantComponent
<
VantIndexAnchorProps
>;