Ts Tour | Pure

interface Todo title: string; description: string; completed: boolean;

// Literal types let direction: "north" | "south" | "east" | "west"; direction = "north"; // OK // direction = "up"; // Error pure ts tour

// Interface interface User readonly id: number; // cannot change after init name: string; email?: string; // optional interface Todo title: string