mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
* shared/src -> shared It's not a real package and doesn't even have package.json. This will also make importing less weird if we drop Haste. * Get rid of shared/utils Moved event-specific into shared/event. Moved rest to the root since distinction has always been pretty arbitrary. * Fix references to old shared/src paths
29 lines
785 B
JavaScript
29 lines
785 B
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.
|
|
*
|
|
* @providesModule ReactTypeOfSideEffect
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
export type TypeOfSideEffect = number;
|
|
|
|
module.exports = {
|
|
// Don't change these two values:
|
|
NoEffect: 0, // 0b00000000
|
|
PerformedWork: 1, // 0b00000001
|
|
// You can change the rest (and add more).
|
|
Placement: 2, // 0b00000010
|
|
Update: 4, // 0b00000100
|
|
PlacementAndUpdate: 6, // 0b00000110
|
|
Deletion: 8, // 0b00001000
|
|
ContentReset: 16, // 0b00010000
|
|
Callback: 32, // 0b00100000
|
|
Err: 64, // 0b01000000
|
|
Ref: 128, // 0b10000000
|
|
};
|