UNPKG

323 BTypeScriptView Raw
1import type { BN } from '../bn/bn.js';
2import type { ToBn } from '../types.js';
3/**
4 * @name formatElapsed
5 * @description Formats an elapsed value into s, m, h or day segments
6 */
7export declare function formatElapsed<ExtToBn extends ToBn>(now?: Date | null, value?: bigint | BN | ExtToBn | Date | number | null): string;