UNPKG

@dalet-oss/lexorank

Version:

A reference 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; }