mirror of
https://github.com/flarum/core.git
synced 2025-07-23 01:31:40 +02:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import type Mithril from 'mithril';
|
|
/**
|
|
* The `fullTime` helper displays a formatted time string wrapped in a <time>
|
|
* tag.
|
|
*/
|
|
export default function fullTime(time: Date): Mithril.Vnode;
|