2018-02-24 00:46:06 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-02-24 00:46:06 +00:00
|
|
|
*
|
|
|
|
* 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';
|
|
|
|
|
|
|
|
const {
|
|
|
|
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
|
|
|
|
} = require('ReactFabric');
|
2018-04-10 22:19:57 +00:00
|
|
|
const createReactNativeComponentClass = require('createReactNativeComponentClass');
|
2018-02-24 00:46:06 +00:00
|
|
|
|
|
|
|
import type {NativeMethodsMixinType} from 'ReactNativeTypes';
|
|
|
|
|
2018-04-10 22:19:57 +00:00
|
|
|
const {NativeMethodsMixin} = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
2018-02-24 00:46:06 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
NativeMethodsMixin: ((NativeMethodsMixin: any): $Exact<
|
|
|
|
NativeMethodsMixinType,
|
|
|
|
>),
|
|
|
|
createReactNativeComponentClass,
|
|
|
|
};
|