UNPKG
earlect
Version:
latest (1.0.0)
1.0.0
Leader Election Generic Implementation for TypeScript
github.com/adi/earlect
adi/earlect
earlect
/
src
/
index.ts
13 lines
(11 loc)
•
301 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
CommunicationMediumError
,
ICommunicationMedium
}
from
"./comm"
;
import
{
Hall
}
from
"./hall"
;
import
{
ILeaderWatcher
}
from
"./leader_watcher"
;
import
{
Viking
}
from
"./viking"
;
export
{
CommunicationMediumError
,
Hall
,
ICommunicationMedium
,
ILeaderWatcher
,
Viking
, };