I am reading the typescript handbook and came across the following code.
declare function create(o: object | null): void; create({ prop: 0 }); create(null); creat