UNPKG

lark-cms

Version:

Multi terminal CMS component library

33 lines (32 loc) 728 B
import React from "react"; type propsDefined = { /** * 是否显示 */ showModal: boolean; /** * 弹框标题 */ title?: string; /** * 中间内容区 */ contentElement: any; /** * 底部内容区 */ bottomElement?: any; /** * 点击蒙层是否关闭 */ closeOnClickModal?: boolean; /** * 关闭弹窗事件 */ closeModal?: () => void; }; /** * 弹层组件(底部弹窗,场景:填写表单、消息确认、列表查看等) */ declare function YhwOpenLayerRN({ showModal, title, contentElement, bottomElement, closeOnClickModal, closeModal }: propsDefined): React.JSX.Element; export default YhwOpenLayerRN;