2023-07-27 05:31:52 +00:00
|
|
|
/*
|
2024-02-13 15:59:27 +00:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-10-10 15:36:47 +00:00
|
|
|
import { EventEmitter } from 'eventemitter3';
|
2024-02-06 07:26:03 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2021-10-10 15:36:47 +00:00
|
|
|
|
2024-02-06 07:26:03 +00:00
|
|
|
export const globalEvents = new EventEmitter<{
|
|
|
|
themeChanged: () => void;
|
|
|
|
clientNotification: (notification: Misskey.entities.Notification) => void;
|
|
|
|
requestClearPageCache: () => void;
|
|
|
|
}>();
|