UNPKG

lark-cms

Version:

Multi terminal CMS component library

17 lines (16 loc) 484 B
import React from "react"; import { Props } from "./index.type"; import type { YhwSearchBarState, YhwSearchBarData } from "./rule-data"; export default class YhwSearchBarRN extends React.Component<Props, {}> { state: YhwSearchBarState; /** * 标题点击更多 */ onHandleMoreClick: (item: any) => void; /** * 菜单跳转逻辑 * @param item 记录项 */ onJumpHandle: (item: YhwSearchBarData) => void; render(): React.JSX.Element; }