UNPKG

react-native-external-keyboard

Version:
11 lines (8 loc) 258 B
import type { StyleProp, ViewStyle } from 'react-native'; export type FocusStateCallbackType = { readonly focused: boolean; }; export type FocusStyle = | StyleProp<ViewStyle> | ((state: FocusStateCallbackType) => StyleProp<ViewStyle>) | undefined;