react-native-macos/Libraries/vendor/emitter/EventEmitter.js

21 строка
419 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 strict-local
* @format
*/
'use strict';
// $FlowFixMe - EventEmitter Type Safety
const EventEmitter = require('./_EventEmitter');
export default EventEmitter;
export interface EventSubscription {
remove(): void;
}