blob: 90d5f6eede42d9f2da81da34c7b2587e43d274bb (
plain)
1
2
3
4
5
6
7
8
9
|
/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { EventEmitter } from 'eventemitter3';
// TODO: 型付け
export const globalEvents = new EventEmitter();
|