(data: Uint8Array | string)
| 980 | const parser = serialization.unsafeMake() |
| 981 | |
| 982 | const offer = (data: Uint8Array | string) => |
| 983 | typeof data === "string" ? mailbox.offer(encoder.encode(data)) : mailbox.offer(data) |
| 984 | |
| 985 | clientIds.add(id) |
| 986 | const client: Client = { |
no test coverage detected