mirror of
https://github.com/flarum/core.git
synced 2025-07-30 21:20:24 +02:00
6 lines
158 B
TypeScript
6 lines
158 B
TypeScript
/**
|
|
* The `humanTime` utility converts a date to a localized, human-readable time-
|
|
* ago string.
|
|
*/
|
|
export default function humanTime(time: Date): string;
|