/* * Contains info of one key from coreNPL about name entity recognition */ export interface INerScoreRecord{ idRecord: string, metadata: Array } /* * Contains info of one key from coreNPL about name entity recognition */ export interface INerScoreRow{ key: string, value: INerScore } /* * Contains info from coreNPL about name entity recognition */ export interface INerScore { LOCATION: number; PERSON: number; ORGANIZATION: number; }