mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a7a7970e54
Summary: This is another step in moving RN towards standard path-based requires, updating more code to use path-based requires. See the umbrella issue at https://github.com/facebook/react-native/issues/24316 for more detail. ## Changelog [General] [Changed] - Replace more Haste imports with path-based imports Pull Request resolved: https://github.com/facebook/react-native/pull/25001 Differential Revision: D15467829 Pulled By: cpojer fbshipit-source-id: 58c364bb4c1c757689907d5ed0d0f3fac0e22f3f
34 lines
757 B
JavaScript
34 lines
757 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {TurboModule} from '../../TurboModule/RCTExport';
|
|
import * as TurboModuleRegistry from '../../TurboModule/TurboModuleRegistry';
|
|
|
|
export type TimePickerOptions = {|
|
|
hour?: number,
|
|
minute?: number,
|
|
is24Hour?: boolean,
|
|
mode?: string,
|
|
|};
|
|
|
|
export type TimePickerResult = {|
|
|
action: string,
|
|
hour: number,
|
|
minute: number,
|
|
|};
|
|
|
|
export interface Spec extends TurboModule {
|
|
+open: (options: TimePickerOptions) => Promise<TimePickerResult>;
|
|
}
|
|
|
|
export default TurboModuleRegistry.get<Spec>('TimePickerAndroid');
|