UNPKG

@dalet-oss/lexorank

Version:

A reference implementation of a list ordering system like JIRA's Lexorank algorithm

11 lines (10 loc) 339 B
import { ILexoNumeralSystem } from './lexoNumeralSystem'; export declare class LexoNumeralSystem36 implements ILexoNumeralSystem { private DIGITS; getBase(): number; getPositiveChar(): string; getNegativeChar(): string; getRadixPointChar(): string; toDigit(ch: string): number; toChar(digit: number): string; }