UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

15 lines (14 loc) 498 B
/// <reference types="react" /> import React from 'react'; import { SearchBarProps, SearchBarState } from './PropsType'; export default class SearchBar extends React.Component<SearchBarProps, SearchBarState> { static defaultProps: any; constructor(props: any); componentWillReceiveProps(nextProps: any): void; onSubmit: (e: any) => void; onChangeText: (value: any) => void; onCancel: () => void; onFocus: () => void; onBlur: () => void; render(): JSX.Element; }