diff --git a/types/mithril/hyperscript.d.ts b/types/mithril/hyperscript.d.ts index 6f83f2244f..e8ee69fff5 100644 --- a/types/mithril/hyperscript.d.ts +++ b/types/mithril/hyperscript.d.ts @@ -1,3 +1,3 @@ -import { Hyperscript } from "mithril"; +import { Hyperscript } from "."; declare const h: Hyperscript; export = h; diff --git a/types/mithril/mount.d.ts b/types/mithril/mount.d.ts index af79b918a9..305a98ae6e 100644 --- a/types/mithril/mount.d.ts +++ b/types/mithril/mount.d.ts @@ -1,3 +1,3 @@ -import { mount as _mount } from "mithril"; +import { mount as _mount } from "."; declare const mount: typeof _mount; export = mount; diff --git a/types/mithril/redraw.d.ts b/types/mithril/redraw.d.ts index 0d5e6bb04e..9f10cc31d4 100644 --- a/types/mithril/redraw.d.ts +++ b/types/mithril/redraw.d.ts @@ -1,4 +1,4 @@ -import { redraw, render } from "mithril"; +import { redraw, render } from "."; declare namespace RedrawService { interface Static { diff --git a/types/mithril/render.d.ts b/types/mithril/render.d.ts index 7861afbbae..9545fc8117 100644 --- a/types/mithril/render.d.ts +++ b/types/mithril/render.d.ts @@ -1,4 +1,4 @@ -import { render } from "mithril"; +import { render } from "."; declare namespace RenderService { interface Static { diff --git a/types/mithril/request.d.ts b/types/mithril/request.d.ts index 4a73e085f7..b5d697027a 100644 --- a/types/mithril/request.d.ts +++ b/types/mithril/request.d.ts @@ -1,4 +1,4 @@ -import { request, jsonp } from "mithril"; +import { request, jsonp } from "."; declare namespace RequestService { interface Static { diff --git a/types/mithril/route.d.ts b/types/mithril/route.d.ts index df8a13181c..aba0ab47dc 100644 --- a/types/mithril/route.d.ts +++ b/types/mithril/route.d.ts @@ -1,3 +1,3 @@ -import { Route } from "mithril"; +import { Route } from "."; declare const route: Route; export = route; diff --git a/types/mithril/withAttr.d.ts b/types/mithril/withAttr.d.ts index 7d1ea786ad..ea5e661e73 100644 --- a/types/mithril/withAttr.d.ts +++ b/types/mithril/withAttr.d.ts @@ -1,3 +1,3 @@ -import { withAttr as _withAttr } from "mithril"; +import { withAttr as _withAttr } from "."; declare const withAttr: typeof _withAttr; export = withAttr;