* Check if a value is a JsonRpcEngineError instance. * Works across different package versions in the same realm. * * @param value - The value to check. * @returns Whether the value is a JsonRpcEngineError instance.
(value: unknown)
| 22 | * @returns Whether the value is a {@link JsonRpcEngineError} instance. |
| 23 | */ |
| 24 | static isInstance(value: unknown): value is JsonRpcEngineError { |
| 25 | return isInstance(value, JsonRpcEngineErrorSymbol); |
| 26 | } |
| 27 | } |
no test coverage detected