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