UNPKG

react-native-a11y

Version:

Improvements of a11y for ReactNative, this library improve work with reader and keyboard focus and reader in general.

14 lines (13 loc) 578 B
import type { ViewProps } from "react-native"; import type { DirectEventHandler, Int32 } from "react-native/Libraries/Types/CodegenTypes"; export type FocusChange = Readonly<{ isFocused: boolean; }>; export interface A11yTextInputWrapperNativeComponent extends ViewProps { onFocusChange?: DirectEventHandler<FocusChange>; focusType?: Int32; blurType?: Int32; canBeFocused?: boolean; } declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType<A11yTextInputWrapperNativeComponent>; export default _default;