lark-cms
Version:
Multi terminal CMS component library
23 lines (22 loc) • 449 B
TypeScript
export declare class Props {
/**
* 默认是否显示出来
*/
isShowPreview?: boolean;
/**
* 保持关闭的时长,单位时:秒
*/
closeMaintainTime?: number;
/**
* 导航对象
*/
navigation?: any;
/**
* 数据集合, H5是JSON对象,RN是JSON的字符串
*/
dataInfo?: any;
/**
* 点击更多按钮
*/
onMoreClick?: (close?: () => any) => void;
}