mirror of
https://github.com/flarum/framework.git
synced 2025-01-25 06:19:46 +08:00
ec5214f714
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import dayjs from 'dayjs';
|
|
/**
|
|
* The `humanTime` utility converts a date to a localized, human-readable time-
|
|
* ago string.
|
|
*/
|
|
export default function humanTime(time: dayjs.ConfigType): string;
|