die heldin script add
This commit is contained in:
23
node_modules/@stomp/stompjs/esm6/compatibility/heartbeat-info.js
generated
vendored
Normal file
23
node_modules/@stomp/stompjs/esm6/compatibility/heartbeat-info.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
/**
|
||||
* Part of `@stomp/stompjs`.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
export class HeartbeatInfo {
|
||||
constructor(client) {
|
||||
this.client = client;
|
||||
}
|
||||
get outgoing() {
|
||||
return this.client.heartbeatOutgoing;
|
||||
}
|
||||
set outgoing(value) {
|
||||
this.client.heartbeatOutgoing = value;
|
||||
}
|
||||
get incoming() {
|
||||
return this.client.heartbeatIncoming;
|
||||
}
|
||||
set incoming(value) {
|
||||
this.client.heartbeatIncoming = value;
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=heartbeat-info.js.map
|
||||
Reference in New Issue
Block a user