react-native-windows
Version:
React Native for Windows
9 lines (8 loc) • 431 B
TypeScript
import React from 'react';
import { IKeyboardProps } from './KeyboardExtProps';
/**
* @deprecated - Exported types should already have the keyboarding properties on them
*/
export declare const supportKeyboard: <P extends Record<string, any>>(WrappedComponent: React.ComponentType<P>) => React.ForwardRefExoticComponent<React.PropsWithoutRef<P & IKeyboardProps & {
children?: React.ReactNode;
}> & React.RefAttributes<any>>;