18 lines
768 B
JavaScript
18 lines
768 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
|
|
*/
|
|
|
|
// This list of flags must be synced with the following file:
|
|
// https://github.com/facebook/react/blob/main/packages/react-reconciler/src/ReactFiberFlags.js
|
|
|
|
export const NoFlags = /* */ 0b000000000000000000000000000;
|
|
export const PerformedWork = /* */ 0b000000000000000000000000001;
|
|
export const Placement = /* */ 0b000000000000000000000000010;
|
|
export const DidCapture = /* */ 0b000000000000000000010000000;
|
|
export const Hydrating = /* */ 0b000000000000001000000000000;
|