mapBridgeError
Converts a bridge error into a resolved error object with a guaranteed string message. Use it when UI or logging code should not deal with nullable error messages.
Importing
ts
import { mapBridgeError } from '@almighty-shogun/webkit-native-bridge'Usage
ts
import { mapBridgeError } from '@almighty-shogun/webkit-native-bridge'
const resolved = mapBridgeError(response.error);
console.error(resolved.message);Parameters
| Name | Type | Description |
|---|---|---|
error | BridgeError<TCode, TDetails> | Bridge error to map. |
Returns
A ResolvedBridgeError with the original type, code, details, and a guaranteed non-null message string.
Type signature
ts
declare function mapBridgeError<TCode extends string, TDetails>(
error: BridgeError<TCode, TDetails>
): ResolvedBridgeError;