(notice: string)
| 16 | import { EventId } from '../@types/base' |
| 17 | |
| 18 | export const createNoticeMessage = (notice: string): NoticeMessage => { |
| 19 | return [MessageType.NOTICE, notice] |
| 20 | } |
| 21 | |
| 22 | export const createOutgoingEventMessage = (subscriptionId: SubscriptionId, event: Event): OutgoingMessage => { |
| 23 | return [MessageType.EVENT, subscriptionId, event] |
no outgoing calls
no test coverage detected