/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v16.10.2
scripts/flow/react-devtools.js
25 строк
684 B
Brian Vaughn
Removed an unnecessary/unused DT Flow type
28 авг 2019, 17:28
28 авг 2019, 17:28
ada5991
Код
Авторство
О чём код?
/** * 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 */ declare module 'events' { declare class EventEmitter<Events: Object> { addListener<Event: $Keys<Events>>( event: Event, listener: (...$ElementType<Events, Event>) => any, ): void; emit: <Event: $Keys<Events>>( event: Event, ...$ElementType<Events, Event> ) => void; removeListener(event: $Keys<Events>, listener: Function): void; removeAllListeners(event?: $Keys<Events>): void; } declare export default typeof EventEmitter; }