UNPKG

lark-cms

Version:

Multi terminal CMS component library

18 lines (17 loc) 480 B
import React from "react"; import { Props } from "./index.type"; import type { YhwDefaultWindowState } from "./rule-data"; 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; }