Find the missing piece in this object type alias.
type Point { x: number; y: number; } const p: Point = { x: 1, y: 2 };
What is the bug in this code?