- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
31 lines
664 B
C++
31 lines
664 B
C++
/**
|
|
* 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.
|
|
*
|
|
* @generated by scripts/releases/set-version.js
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string_view>
|
|
|
|
#define REACT_NATIVE_VERSION_MAJOR 0
|
|
#define REACT_NATIVE_VERSION_MINOR 85
|
|
#define REACT_NATIVE_VERSION_PATCH 2
|
|
|
|
namespace facebook::react {
|
|
|
|
struct ReactNativeVersionType {
|
|
int32_t Major = 0;
|
|
int32_t Minor = 85;
|
|
int32_t Patch = 2;
|
|
std::string_view Prerelease = "";
|
|
};
|
|
|
|
constexpr ReactNativeVersionType ReactNativeVersion;
|
|
|
|
} // namespace facebook::react
|