c1514ce91d
Fix #13290
13 lines
382 B
TypeScript
13 lines
382 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { EventEmitter } from 'eventemitter3';
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
export const globalEvents = new EventEmitter<{
|
|
themeChanged: () => void;
|
|
clientNotification: (notification: Misskey.entities.Notification) => void;
|
|
requestClearPageCache: () => void;
|
|
}>();
|