UNPKG

ts-textrank

Version:

Typescript TextRank implementation

8 lines (7 loc) 209 B
import Sentence from "./Sentence"; export default class Text { readonly raw: string; readonly sentences: Sentence[]; constructor(raw: string, sentences: Sentence[]); getNormalized(): string; }