zeed 0.7.7 → 0.7.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -182,7 +182,7 @@ getGlobalEmitter().call.test("Hello World")
|
|
|
182
182
|
Communicating to servers or other remote parts through messages as if they were methods on a local object in a typesafe way:
|
|
183
183
|
|
|
184
184
|
```ts
|
|
185
|
-
let m =
|
|
185
|
+
let m = useMessages<MyMessages>({ cannel })
|
|
186
186
|
m.echo({ hello: "world" })
|
|
187
187
|
```
|
|
188
188
|
|