react-native-a11y
Version:
Improvements of a11y for ReactNative, this library improve work with reader and keyboard focus and reader in general.
15 lines • 637 B
TypeScript
import type { HostComponent, ViewProps } from 'react-native';
import type { DirectEventHandler, Int32 } from 'react-native/Libraries/Types/CodegenTypes';
export type FocusChange = Readonly<{
isFocused: boolean;
}>;
export type OnTextFocusChange = DirectEventHandler<FocusChange>;
export interface A11yTextInputWrapperNativeComponent extends ViewProps {
onFocusChange?: OnTextFocusChange;
focusType?: Int32;
blurType?: Int32;
canBeFocused?: boolean;
}
declare const _default: HostComponent<A11yTextInputWrapperNativeComponent>;
export default _default;
//# sourceMappingURL=A11yTextInputWrapperNativeComponent.d.ts.map