6 lines
100 B

export interface Country {
code: string;
continent: string;
name: string;
weight: number;
}