mirror of
https://github.com/flarum/framework.git
synced 2025-01-22 12:33:17 +08:00
20 lines
353 B
TypeScript
20 lines
353 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: Stream.Static;
|
|
}
|
|
|
|
declare global {
|
|
const m: m;
|
|
const dayjs: typeof _dayjs;
|
|
const classNames: classNames;
|
|
}
|
|
|
|
export as namespace Mithril;
|
|
|
|
export {};
|