Files
DefinitelyTyped/types/mithril/redraw.d.ts
2017-04-18 13:54:27 -07:00

12 lines
228 B
TypeScript

import { redraw, render } from "mithril";
declare namespace RedrawService {
interface Static {
render: typeof render;
redraw: typeof redraw;
}
}
declare const RedrawService: RedrawService.Static;
export = RedrawService;