mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
192 B
TypeScript
13 lines
192 B
TypeScript
1 year ago
|
/*
|
||
|
* evt.ts
|
||
|
* Copyright (C) 2023 veypi <i@veypi.com>
|
||
|
* 2023-10-08 02:21
|
||
|
* Distributed under terms of the MIT license.
|
||
|
*/
|
||
|
|
||
|
|
||
|
import mitt from "mitt";
|
||
|
|
||
1 year ago
|
const bus = mitt()
|
||
|
export default bus
|