interface Person {
name: string;
};
const hjalmar: Person = {
fullname: 'Hjalmar Andersson',
description: 'Living above the Arctic Circle'
};
interface Person {
name: string;
};
const hjalmar: Person = {
fullname: 'Hjalmar Andersson',
description: 'Living above the Arctic Circle'
};