File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export function getEventHandlerFromProps(
3030 return undefined ;
3131}
3232
33- export function getEventHandlerName ( eventName : string ) {
33+ function getEventHandlerName ( eventName : string ) {
3434 return `on${ capitalizeFirstLetter ( eventName ) } ` ;
3535}
3636
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import { isEditableTextInput } from './helpers/text-input';
1717import { nativeState } from './native-state' ;
1818import type { Point , StringWithAutocomplete } from './types' ;
1919
20- export function isTouchResponder ( element : HostElement ) {
20+ function isTouchResponder ( element : HostElement ) {
2121 return Boolean ( element . props . onStartShouldSetResponder ) || isHostTextInput ( element ) ;
2222}
2323
@@ -44,7 +44,7 @@ const textInputEventsIgnoringEditableProp = new Set([
4444 'onScroll' ,
4545] ) ;
4646
47- export function isEventEnabled (
47+ function isEventEnabled (
4848 element : HostElement ,
4949 eventName : string ,
5050 nearestTouchResponder ?: HostElement ,
You can’t perform that action at this time.
0 commit comments