mirror of
https://github.com/flarum/framework.git
synced 2025-02-09 14:04:00 +08: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;
|