fix typo in DatePickerAndroidTypes.js (#24234)

Summary:
fix typo in DatePickerAndroidTypes.js, fixes https://github.com/facebook/react-native/issues/24137

[Android] [Changed] - fix typo in DatePickerAndroidTypes.js
Pull Request resolved: https://github.com/facebook/react-native/pull/24234

Differential Revision: D14705691

Pulled By: cpojer

fbshipit-source-id: 0d4aee045f7ec36b0cfcd5b4ce5a2cd47cee9ec5
This commit is contained in:
Dulmandakh
2019-04-01 08:37:20 -07:00
committed by Facebook Github Bot
parent ec3adae99a
commit 11ac06fda4

View File

@@ -12,7 +12,7 @@ export type Options = $ReadOnly<{|
date?: ?(Date | number),
minDate?: ?(Date | number),
maxDate?: ?(Date | number),
mode?: ?('calender' | 'spinner' | 'default'),
mode?: ?('calendar' | 'spinner' | 'default'),
|}>;
export type DatePickerOpenAction =