UNPKG

@ivanvolti/lexorank

Version:

Implementation of a list ordering system like JIRA's Lexorank algorithm

9 lines (8 loc) 227 B
export interface ILexoNumeralSystem { getBase(): number; getPositiveChar(): string; getNegativeChar(): string; getRadixPointChar(): string; toDigit(var1: string): number; toChar(var1: number): string; }