Files
react-native/packages/react-native-codegen/e2e/__test_fixtures__/modules/NativeBooleanTurboModule.js
T
Michał Osadnik 6e73304401 Follow up e2e testing mechanism with real tests (#25680)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/25680

This diff's adding real e2e tests for skeleton added in previous diff.

It verifies many cases for codegen, which should generate cpp code.

Reviewed By: rickhanlonii

Differential Revision: D16279810

fbshipit-source-id: 4441dd0ed4d95476e4071fbd654ebfb8a47ecbfc
2019-07-17 06:21:48 -07:00

25 lines
689 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 'react-native/Libraries/TurboModule/RCTExport';
import * as TurboModuleRegistry from 'react-native/Libraries/TurboModule/TurboModuleRegistry';
export type Boolean = boolean;
type AnotherBoolean = Boolean;
export interface Spec extends TurboModule {
+getBoolean: (arg: boolean) => boolean;
+getBooleanWithAlias: (arg: Boolean) => AnotherBoolean;
}
export default TurboModuleRegistry.getEnforcing<Spec>('SampleTurboModule');