export interface INerScoreRecord { idRecord: string; metadata: Array; } export interface INerScoreRow { key: string; value: INerScore; } export interface INerScore { LOCATION: number; PERSON: number; ORGANIZATION: number; }