Code QuizBeginner

Type Aliases with type Keyword

Find the syntax mistake in a type alias declaration.

Codetypescript
type Point {
  x: number;
  y: number;
}

What is the bug in this code?