We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e36fb0b commit b20b972Copy full SHA for b20b972
src/core/federation.ts
@@ -291,7 +291,7 @@ function isANodeJSCodedError(e: Error): e is NodeJSCodedError {
291
* A network sender is a reactor containing a portAbsentReaction.
292
*/
293
export class NetworkSender extends Reactor {
294
- constructor (parent: Reactor) {
+ constructor(parent: Reactor) {
295
super(parent);
296
}
297
@@ -1229,7 +1229,7 @@ export class FederatedApp extends App {
1229
/**
1230
* An array of network senders
1231
1232
- private readonly networkSenders: Array<NetworkSender> = [];
+ private readonly networkSenders: NetworkSender[] = [];
1233
1234
private readonly portAbsentReactions = new Set<Reaction<Variable[]>>();
1235
0 commit comments