/** * 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. * * @format * @flow strict */ 'use strict'; import { type EventSubscription } from './EventSubscription'; import type EventSubscriptionVendor from './_EventSubscriptionVendor'; /** * EventSubscription represents a subscription to a particular event. It can * remove its own subscription. */ declare class _EventSubscription> implements EventSubscription { eventType: K, key: number, subscriber: EventSubscriptionVendor, listener: ?(...$ElementType) => mixed, context: ?$FlowFixMe, constructor(subscriber: EventSubscriptionVendor): any, remove(): void, } export default _EventSubscription;