mirror of
https://github.com/flarum/framework.git
synced 2024-12-13 23:53:42 +08:00
c3a684c7ed
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
7 lines
215 B
TypeScript
7 lines
215 B
TypeScript
import * as Mithril from 'mithril';
|
|
import User from '../models/User';
|
|
/**
|
|
* The `useronline` helper displays a green circle if the user is online
|
|
*/
|
|
export default function userOnline(user: User): Mithril.Vnode;
|