@tmlmobilidade/utils
Version:
A collection of utility functions and helpers for the TML Mobilidade Go monorepo, providing common functionality for batching operations, caching, HTTP requests, object manipulation, permissions, and more.
9 lines (8 loc) • 304 B
TypeScript
/**
* Utility function to convert a hexadecimal string to a uint64 string.
* @param hex The hexadecimal string to convert to a uint64 string.
* @returns The uint64 string.
* @example
* toUInt64('1234567890'); // returns '1234567890'
*/
export declare function toUInt64(hex: string): null | string;