mirror of https://github.com/status-im/js-waku.git
Remove `declare` keyword which removes the values from generated JS
This commit is contained in:
parent
28572fccff
commit
7c6730b4a3
|
@ -16,7 +16,7 @@ export const RelayDefaultTopic = '/waku/2/default-waku/proto';
|
|||
* We will send gossip to RelayGossipFactor * (total number of non-mesh peers), or
|
||||
* RelayDlazy, whichever is greater.
|
||||
*/
|
||||
export declare const RelayGossipFactor = 0.25;
|
||||
export const RelayGossipFactor = 0.25;
|
||||
|
||||
/**
|
||||
* GossipsubHeartbeatInitialDelay is the short delay before the heartbeat timer begins
|
||||
|
@ -74,4 +74,4 @@ export const RelayOpportunisticGraftPeers = 2;
|
|||
* default if your system is pushing more than 5000 messages in GossipsubHistoryGossip heartbeats;
|
||||
* with the defaults this is 1666 messages/s.
|
||||
*/
|
||||
export declare const RelayMaxIHaveLength = 5000;
|
||||
export const RelayMaxIHaveLength = 5000;
|
||||
|
|
Loading…
Reference in New Issue