showPlainInputUponKeyboard.d.ts 378 B

1234567891011121314
  1. export interface showPlainInputUponKeyboardProps {
  2. placeholder?: string;
  3. text?: string;
  4. }
  5. declare function showPlainInputUponKeyboard(args: showPlainInputUponKeyboardProps): Promise<{
  6. text: string;
  7. }>;
  8. declare namespace showPlainInputUponKeyboard {
  9. var version: {
  10. android: string;
  11. ios: string;
  12. };
  13. }
  14. export default showPlainInputUponKeyboard;