mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
17 lines
438 B
JavaScript
17 lines
438 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* 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 EventSystemFlags = number;
|
|
|
|
export const PLUGIN_EVENT_SYSTEM = 1;
|
|
export const RESPONDER_EVENT_SYSTEM = 1 << 1;
|
|
export const IS_PASSIVE = 1 << 2;
|
|
export const IS_ACTIVE = 1 << 3;
|
|
export const PASSIVE_NOT_SUPPORTED = 1 << 4;
|