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