react-native-ui-lib
Version:
[](https://stand-with-ukraine.pp.ua)
11 lines (10 loc) • 443 B
TypeScript
import React from 'react';
import CustomKeyboardViewBase, { CustomKeyboardViewBaseProps } from './CustomKeyboardViewBase';
export default class CustomKeyboardView extends CustomKeyboardViewBase<CustomKeyboardViewBaseProps> {
static displayName: string;
componentDidUpdate(prevProps: CustomKeyboardViewBaseProps): Promise<void>;
getStyle: () => {
height: number | undefined;
};
render(): React.JSX.Element | null;
}