mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
24 lines
466 B
JavaScript
24 lines
466 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and 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
|
|
* @generated by scripts/releases/set-rn-version.js
|
|
*/
|
|
|
|
const version: $ReadOnly<{
|
|
major: number,
|
|
minor: number,
|
|
patch: number,
|
|
prerelease: string | null,
|
|
}> = {
|
|
major: 0,
|
|
minor: 75,
|
|
patch: 0,
|
|
prerelease: null,
|
|
};
|
|
|
|
module.exports = {version};
|