We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9ee3a9 commit 21543c5Copy full SHA for 21543c5
Libraries/Components/TimePickerAndroid/TimePickerAndroid.ios.js
@@ -5,13 +5,18 @@
5
* LICENSE file in the root directory of this source tree.
6
*
7
* @format
8
- * @flow
+ * @flow strict-local
9
*/
10
11
'use strict';
12
13
+import type {
14
+ TimePickerOptions,
15
+ TimePickerResult,
16
+} from './TimePickerAndroidTypes';
17
+
18
const TimePickerAndroid = {
- async open(options: Object): Promise<Object> {
19
+ async open(options: TimePickerOptions): Promise<TimePickerResult> {
20
return Promise.reject({
21
message: 'TimePickerAndroid is not supported on this platform.',
22
});
0 commit comments