1
0
Fork 1
mirror of https://example.com synced 2024-11-23 02:46:39 +09:00
firefish/packages/firefish-js/markdown/firefish-js.channelconnection.send.md
2023-07-20 04:17:05 +09:00

598 B

Home > firefish-js > ChannelConnection > send

ChannelConnection.send() method

Signature:

send<T extends keyof Channel["receives"]>(
		type: T,
		body: Channel["receives"][T],
	): void;

Parameters

Parameter Type Description
type T
body Channel["receives"][T]

Returns:

void