UNPKG

lark-cms

Version:

Multi terminal CMS component library

31 lines (30 loc) 656 B
export declare class Props { /** * 当前页面的路径,比如:raodaor://homeDefalut */ pageCurrent?: string; /** * 当前页面的Key */ pageKey?: string; /** * 导航对象 */ navigation?: any; /** * 数据集合, H5是JSON对象,RN是JSON的字符串 */ dataInfo?: any; /** * 内部切换的tab点击模式(区别于,内部页面跳转、网址到webview展示) */ onInnerTabPress?: any; /** * 默认选中序号 */ defaultIndex?: number; /** * 点击更多按钮 */ onMoreClick?: (close?: () => any) => void; }