Dual light/dark HighlightStyle preview
Dual light/dark HighlightStyle
Following your OS / browser prefers-color-scheme. Switch your
system theme to see it flip.
interface User {
id: number;
name: string;
}
const greet = (user: User): string => {
return `Hello, ${user.name}!`;
};