mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 22:03:07 +00:00
* move KeepAliveOptions to dedicated interface file * update export for KeepAlive * expose `ConnectionManager` on the waku node * update ConnectionManager test to use the exposed API * rm: only for the test
5 lines
89 B
TypeScript
5 lines
89 B
TypeScript
export interface KeepAliveOptions {
|
|
pingKeepAlive: number;
|
|
relayKeepAlive: number;
|
|
}
|