poe-i18n
Version:
i18n utility for Path of Exile
9 lines (8 loc) • 414 B
TypeScript
import Formatter from './Formatter';
export declare const formatters: {
[key: string]: Formatter;
};
export declare function inverseFactory(formatter_id: string): (s: string) => number;
export declare function regexpFactory(formatter_id: string): string;
export declare function buildFormatter(formatter_id: string): Formatter;
export default function factory(formatter_id: string): (value: number) => string;