mirror of
https://github.com/flarum/framework.git
synced 2024-11-22 20:41:34 +08:00
20 lines
360 B
TypeScript
20 lines
360 B
TypeScript
import * as Mithril from 'mithril';
|
|
import Stream from 'mithril/stream';
|
|
|
|
import * as _dayjs from 'dayjs';
|
|
import classNames from 'classnames';
|
|
|
|
interface m extends Mithril.Static {
|
|
prop: typeof Stream;
|
|
}
|
|
|
|
declare global {
|
|
const m: m;
|
|
const dayjs: typeof _dayjs;
|
|
const classNames: typeof classNames;
|
|
}
|
|
|
|
export as namespace Mithril;
|
|
|
|
export {};
|