diff --git a/Libraries/Components/TextInput/TextInput.d.ts b/Libraries/Components/TextInput/TextInput.d.ts index 12cfec2987c..50d02c13f08 100644 --- a/Libraries/Components/TextInput/TextInput.d.ts +++ b/Libraries/Components/TextInput/TextInput.d.ts @@ -27,15 +27,15 @@ import {ViewProps} from '../View/ViewPropTypes'; export type KeyboardType = | 'default' - | 'email-address' - | 'numeric' - | 'phone-pad' | 'number-pad' - | 'decimal-pad'; + | 'decimal-pad' + | 'numeric' + | 'email-address' + | 'phone-pad' + | 'url'; export type KeyboardTypeIOS = | 'ascii-capable' | 'numbers-and-punctuation' - | 'url' | 'name-phone-pad' | 'twitter' | 'web-search';