@xylabs/hex
Version:
Base functionality used throughout XY Labs TypeScript/JavaScript libraries
8 lines • 300 B
TypeScript
import type { Hex, HexConfig } from '../model.ts';
/** Convert a bigint to a hex string */
export declare const hexFromBigInt: (
/** The bigint to be converted */
value: bigint,
/** Configuration of output format and validation */
config?: HexConfig) => Hex;
//# sourceMappingURL=fromBigInt.d.ts.map