mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
678d5f7cd1
Summary: Original commit changeset: 189754a567a3 Reviewed By: rickhanlonii Differential Revision: D16586885 fbshipit-source-id: 34a8f8395ca73e190ccf0242f02626094f6d87b6
18 lines
335 B
JavaScript
18 lines
335 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.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
function codegenNativeCommands<T>(): T {
|
|
return (({}: any): T);
|
|
}
|
|
|
|
export default codegenNativeCommands;
|