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