UNPKG

lark-cms

Version:

Multi terminal CMS component library

29 lines (28 loc) 653 B
import React from "react"; import type { UserInfoData, YhwWaterfallFlowInterface } from "./rule-data"; export declare class Props { /** * 导航对象 */ navigation?: any; /** * 接口相关 */ interface?: YhwWaterfallFlowInterface; /** * 头部自定义组件 */ headerComponent?: React.JSX.Element; /** * 数据集合, H5是JSON对象,RN是JSON的字符串 */ dataInfo?: any; /** * 用户信息, H5是JSON对象,RN是JSON的字符串 */ userInfo?: UserInfoData; /** * 点击更多按钮 */ onMoreClick?: (close?: () => any) => void; }