JSON.parse returns any. Replace this with unknown and add checks. You will parse JSON, then safely read a title if it exists and is a string.
Check that the value is an object and not null before reading properties. Then check that title is a string.
function readName(v: unknown) {
if (typeof v === "object" && v !== null && "name" in v) {
const n = (v as { name?: unknown }).name;
return typeof n === "string" ? n : "unknown";
}
return "unknown";
}
Parse JSON and return a safe title string.