Progress11/25
Question 11 of 25
Which answer best describes the benefit of using union literal types for Status?
typescript
type Status = "idle" | "loading" | "success" | "error";Status?type Status = "idle" | "loading" | "success" | "error";