UNPKG

reviews-analysis

Version:

Analyse public vehicle reviews via ML (Aylien) and save the data into a Document Store (Mongo). Supports Classifications and Document and Aspect level Sentiment Analysis.

17 lines (16 loc) 422 B
export declare class LRUCache<T> { private headerNode; private tailNode; private nodeMap; private size; private readonly sizeLimit; constructor(size: number); readonly length: number; private prependToList; private removeFromTail; private detachFromList; get(key: string): T | undefined; remove(key: string): void; put(key: string, value: T): void; empty(): void; }