timered-counter
Version:
Make the value change more vivid and natural
7 lines (6 loc) • 347 B
TypeScript
import type { StringAdapter } from '../string-adapter/index.js';
export declare function anyBase(sa: StringAdapter, srcAlphabet: string, dstAlphabet: string): (number: string) => string;
export declare const BIN = "01";
export declare const OCT = "01234567";
export declare const DEC = "0123456789";
export declare const HEX = "0123456789abcdef";