32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
export type TypeOfSideEffect = number;
|
|
|
|
// Don't change these two values. They're used by React Dev Tools.
|
|
export const NoEffect = /* */ 0b00000000000;
|
|
export const PerformedWork = /* */ 0b00000000001;
|
|
|
|
// You can change the rest (and add more).
|
|
export const Placement = /* */ 0b00000000010;
|
|
export const Update = /* */ 0b00000000100;
|
|
export const PlacementAndUpdate = /* */ 0b00000000110;
|
|
export const Deletion = /* */ 0b00000001000;
|
|
export const ContentReset = /* */ 0b00000010000;
|
|
export const Callback = /* */ 0b00000100000;
|
|
export const DidCapture = /* */ 0b00001000000;
|
|
export const Ref = /* */ 0b00010000000;
|
|
export const ErrLog = /* */ 0b00100000000;
|
|
|
|
// Union of all host effects
|
|
export const HostEffectMask = /* */ 0b00111111111;
|
|
|
|
export const Incomplete = /* */ 0b01000000000;
|
|
export const ShouldCapture = /* */ 0b10000000000;
|