UNPKG
sgod-library-frontend
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.0
0.1.1
0.1.0
Thư viện component UI Frontend
github.com/SGOD-UTH/Library---Frontend
SGOD-UTH/Library---Frontend
sgod-library-frontend
/
dist
/
esm
/
types
/
utils
/
eventBus.d.ts
8 lines
(7 loc)
•
226 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Emitter
}
from
'mitt'
;
export
type
EventData
=
string
|
number
|
boolean
|
object
|
null
|
undefined
;
type
Events
= { [
key
:
string
]:
EventData
; };
declare
const
eventBus
:
Emitter
<
Events
>;
export
default
eventBus;