@dalet-oss/lexorank
Version:
A reference implementation of a list ordering system like JIRA's Lexorank algorithm
11 lines (10 loc) • 341 B
TypeScript
import { ILexoNumeralSystem } from './lexoNumeralSystem';
export declare class LexoNumeralSystem64 implements ILexoNumeralSystem {
DIGITS: string[];
getBase(): number;
getPositiveChar(): string;
getNegativeChar(): string;
getRadixPointChar(): string;
toDigit(ch: string): number;
toChar(digit: number): string;
}