What does the following template literal type produce?
type Status = "loading" | "success" | "error";
type StatusMessage = `Status: ${Status}`;
A union of string literals prefixed with "Status.
A dynamic string generator.
A type for objects with a Status property.
A function type for status messages.
This question is part of this quiz :
Advanced Types in TypeScript Quiz