UNPKG

lark-cms

Version:

Multi terminal CMS component library

21 lines (20 loc) 555 B
import React from "react"; import { Props } from "./index.type"; import type { YhwDefaultWindowState } from "./rule-data"; /** * 【RN】默认弹窗 组件(场景:弹出一张广告图) */ export default class YhwDefaultWindowRN extends React.Component<Props> { state: YhwDefaultWindowState; UNSAFE_componentWillMount(): void; /** * 跳转逻辑 * @param item 记录项 */ onJumpHandle: (item: any) => void; /** * 关闭浮层 */ onCloseLayer: (e?: boolean) => Promise<void>; render(): any; }