7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
export const PING_INTERVAL_MS = 2000;
|
|
export const PONG_TIMEOUT_MS = 5000;
|
|
|
|
export const PONG_MESSAGE_TYPE = 'pong';
|
|
|
|
export const OUTGOING_PING_MESSAGE = JSON.stringify({ type: 'ping' });
|