We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Are there TypeScript typings available?
Something like this (just took a stab)
declare module 'react-native-navigation-search-bar' { export type RNNSearchBarProps = { search?: string; componentId: string; statusBarHeight: number; placeholder?: string; onChangeText?: (value: string) => void; onSearchButtonPress?: () => void; onFocus?: () => void; onBlur?: () => void; onClear?: () => void; onCancel?: () => void; }; declare class RNNSearchBar extends Component<RNNSearchBarProps> {} }
The text was updated successfully, but these errors were encountered:
@trajano Want to make a PR? Thanks
Sorry, something went wrong.
No branches or pull requests
Are there TypeScript typings available?
Something like this (just took a stab)
The text was updated successfully, but these errors were encountered: