import { INerScoreRow } from './metadata'; /* * Contains all information about a node from neo4j */ export interface IRecord{ id: string; values: Array; nerScores?: Array; cluster?: Array; } /* * Contains k-v pairs of a IRecord */ export interface IRecordValue{ key: string, value: string }