(message: string)
| 77 | } |
| 78 | |
| 79 | function _makeInternalError(message: string): InternalError { |
| 80 | return { |
| 81 | message, |
| 82 | [INTERNAL_ERROR_SYMBOL]: true, |
| 83 | }; |
| 84 | } |
| 85 | |
| 86 | function _makeDoNotSendEventError(message: string): DoNotSendEventError { |
| 87 | return { |
no outgoing calls
no test coverage detected