(subscriptionId: SubscriptionId, event: Event)
| 20 | } |
| 21 | |
| 22 | export const createOutgoingEventMessage = (subscriptionId: SubscriptionId, event: Event): OutgoingMessage => { |
| 23 | return [MessageType.EVENT, subscriptionId, event] |
| 24 | } |
| 25 | |
| 26 | // NIP-15 |
| 27 | export const createEndOfStoredEventsNoticeMessage = (subscriptionId: SubscriptionId): EndOfStoredEventsNotice => { |
no outgoing calls
no test coverage detected