jacany / nosbin

Detected usage of the any type JS-0323
Anti-pattern
Critical
3 months agoa year old
Unexpected any. Specify a different type
185		return this.relays.getEventById(id, this.getCurrentRelaysInArray(), maxDelayms);
186	}
187
188	public sub(filters: any[], onEvent: (event: Event, isAfterEose: boolean, relayUrl: string | undefined) => void, maxDelayms = 100) {189		// @ts-ignore
190		return this.relays.subscribe(filters, this.getCurrentRelaysInArray(), onEvent, maxDelayms, undefined)
191	}