From 6e1ad980e8017a5731fb0c05a2ccf7c3ebcd6c2d Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 6 Oct 2017 13:59:04 -0700 Subject: [PATCH] mithril: Fix no-self-import lint failures (#20366) --- types/mithril/hyperscript.d.ts | 2 +- types/mithril/mount.d.ts | 2 +- types/mithril/redraw.d.ts | 2 +- types/mithril/render.d.ts | 2 +- types/mithril/request.d.ts | 2 +- types/mithril/route.d.ts | 2 +- types/mithril/withAttr.d.ts | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) 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;