1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 * @generated by scripts/set-rn-version.js
8 */
9
10#pragma once
11
12#include <cstdint>
13#include <string_view>
14
15namespace facebook::react {
16
17constexpr struct {
18  int32_t Major = ${major};
19  int32_t Minor = ${minor};
20  int32_t Patch = ${patch};
21  std::string_view Prerelease = ${prerelease};
22} ReactNativeVersion;
23
24} // namespace facebook::react
25