initialˆ

This commit is contained in:
2025-09-30 12:54:29 +08:00
commit acdf544b08
117 changed files with 20260 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import mitt from 'mitt';
type Events = {
'refresh-user-info': void;
};
const eventBus = mitt<Events>();
export default eventBus;