export interface CounterType { key: string; count: number; } export interface DifferentType extends CounterType { values: string[]; }