(thing: any)
| 64 | } |
| 65 | |
| 66 | const isSerializedError = (thing: any): thing is SerializedError => |
| 67 | thing && typeof thing === "object" && "__error_marker" in thing && thing.__error_marker === "$$error" |
| 68 | |
| 69 | export const DefaultSerializer: Serializer<JsonSerializable> = { |
| 70 | deserialize(message: JsonSerializable): any { |