Flow strict-local in TimePickerAndroid.android.ios.js (#22714)
Summary: Related to #22100 Enhance TimePickerAndroid flow types. Turn Flow strict mode on for Libraries/Components/TimePickerAndroid/TimePickerAndroid.android.ios.js. All flow tests succeed. [General] [Changed] - Enhance Flow types definitions Pull Request resolved: https://github.com/facebook/react-native/pull/22714 Differential Revision: D13817142 Pulled By: cpojer fbshipit-source-id: 9d0f0b0629966a60d77b73ba8a6bba4e1a4e2337
This commit is contained in:
parent
3a33e75183
commit
2ed1bb2e01
|
@ -5,13 +5,18 @@
|
||||||
* LICENSE file in the root directory of this source tree.
|
* LICENSE file in the root directory of this source tree.
|
||||||
*
|
*
|
||||||
* @format
|
* @format
|
||||||
* @flow
|
* @flow strict-local
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
import type {
|
||||||
|
TimePickerOptions,
|
||||||
|
TimePickerResult,
|
||||||
|
} from './TimePickerAndroidTypes';
|
||||||
|
|
||||||
const TimePickerAndroid = {
|
const TimePickerAndroid = {
|
||||||
async open(options: Object): Promise<Object> {
|
async open(options: TimePickerOptions): Promise<TimePickerResult> {
|
||||||
return Promise.reject({
|
return Promise.reject({
|
||||||
message: 'TimePickerAndroid is not supported on this platform.',
|
message: 'TimePickerAndroid is not supported on this platform.',
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue