react-native-avoid-softinput
Version:
Native logic for avoiding covering text inputs by soft input views
12 lines • 357 B
TypeScript
interface Action {
payload: number;
}
export declare function createAction(payload: number): Action;
export interface State {
isSoftInputShown: boolean;
softInputHeight: number;
}
export declare const initialState: State;
export declare function reducer(state: State, action: Action): State;
export {};
//# sourceMappingURL=stateReducer.d.ts.map