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