UNPKG
antd-mobile-alita
Version:
latest (2.3.4)
2.3.4
基于 React 的移动设计规范实现
mobile.ant.design
ant-design/ant-design-mobile
antd-mobile-alita
/
lib
/
tabs
/
PropsType.d.ts
8 lines
(7 loc)
•
253 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/// <reference types="react" />
import
{
Models
,
PropsType
}
from
'rmc-tabs'
;
interface
TabsProps
extends
PropsType
{
/** render for replace the tab of tabbar. */
renderTab
?:
(
tab
:
Models
.
TabData
) =>
React
.
ReactNode
; }
export
default
TabsProps
;