mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 02:07:56 +00:00
8 lines
323 B
TypeScript
8 lines
323 B
TypeScript
import type { BN } from '../bn/bn.js';
|
|
import type { ToBn } from '../types.js';
|
|
/**
|
|
* @name formatElapsed
|
|
* @description Formats an elapsed value into s, m, h or day segments
|
|
*/
|
|
export declare function formatElapsed<ExtToBn extends ToBn>(now?: Date | null, value?: bigint | BN | ExtToBn | Date | number | null): string;
|