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