Explicitly Highlighting Unsafe Operations with Type Assertions and unknown
const ppl: Person[] = await fetch("/api/people").then((res) => res.json());
// ^
// Type 'unknown' is not assignable to type 'Person[]'.ts(2322)
const ppl: Person[] = await fetch("/api/people").then((res) => res.json());
// ^
// Type 'unknown' is not assignable to type 'Person[]'.ts(2322)