satoshi-bitcoin-ts
Version:
A tiny typescript library to convert between Bitcoin & Satoshis with precision.
11 lines (10 loc) • 316 B
TypeScript
/**
* Determines if all the passed args are strings
* @param args The arguments to check
*/
export declare function isString(...args: unknown[]): boolean;
/**
* Determines if all the passed args are numbers
* @param args The arguments to check
*/
export declare function isNumber(...args: unknown[]): boolean;