UNPKG

hamok

Version:

Lightweight Distributed Object Storage on RAFT consensus algorithm

9 lines (7 loc) 192 B
export type RaftStateName = 'follower' | 'candidate' | 'leader' | 'empty'; export interface RaftState { stateName: RaftStateName; init?: () => void; run: () => void; close: () => void; }