In TypeScript, what would be the output of:
const tabnine: {} = { tabnine: "completes me" };
console.log(tabnine) ?
1. [LOG]: {
"tabnine": "completes me"
}
2. [TypeScript compilation error]: Type '{ tabnine: string; }' is not assignable to type '{}'.