(value: unknown)
| 660 | } |
| 661 | |
| 662 | export function isRuntimeResponse(value: unknown): value is RuntimeResponse { |
| 663 | return validateRuntimeResponse(value).ok |
| 664 | } |
| 665 | |
| 666 | export function isRuntimeNotification(value: unknown): value is RuntimeNotification { |
| 667 | return validateRuntimeNotification(value).ok |
nothing calls this directly
no test coverage detected