egirlskey/packages/frontend/src/events.ts

14 lines
382 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
2021-10-10 15:36:47 +00:00
import { EventEmitter } from 'eventemitter3';
import * as Misskey from 'misskey-js';
2021-10-10 15:36:47 +00:00
export const globalEvents = new EventEmitter<{
themeChanged: () => void;
clientNotification: (notification: Misskey.entities.Notification) => void;
requestClearPageCache: () => void;
}>();