mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-11 15:33:48 +08:00
Summary: [General] [Added] - Simply adding spec for better enforcement of types. Reviewed By: cpojer Differential Revision: D14177690 fbshipit-source-id: ab4c112d1bd65fef7e37b4c1d6c44055f5576936
24 lines
651 B
JavaScript
24 lines
651 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 strict-local
|
|
* @format
|
|
*/
|
|
'use strict';
|
|
|
|
import type {TurboModule} from 'RCTExport';
|
|
import * as TurboModuleRegistry from 'TurboModuleRegistry';
|
|
|
|
export interface Spec extends TurboModule {
|
|
+fetchSegment: (
|
|
segmentId: number,
|
|
options: Object, // flowlint-line unclear-type: off
|
|
callback: (error: ?Object) => void, // flowlint-line unclear-type: off
|
|
) => void;
|
|
}
|
|
|
|
export default TurboModuleRegistry.getEnforcing<Spec>('SegmentFetcher');
|