(value: unknown)
| 664 | } |
| 665 | |
| 666 | export function isRuntimeNotification(value: unknown): value is RuntimeNotification { |
| 667 | return validateRuntimeNotification(value).ok |
| 668 | } |
| 669 | |
| 670 | export function runtimeError(code: string, message: string, data?: unknown): RuntimeError { |
| 671 | return data === undefined ? { code, message } : { code, message, data } |
no test coverage detected