Skip to content

Commit 9d3621f

Browse files
committed
prefer strings for event types
1 parent a7e53eb commit 9d3621f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/js-waku/reliable-channels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The Waku node will emit `health` events to help you know whether the node is con
7171
This can be useful to give feedback to the user, or stop some action (e.g. sending messages) when offline:
7272

7373
```js
74-
import { HealthStatus, WakuEvent } from "@waku/sdk";
74+
import { HealthStatus } from "@waku/sdk";
7575

7676
node.events.addEventListener("waku:health", (event) => {
7777
const health = event.detail;

0 commit comments

Comments
 (0)