mithril: Fix no-self-import lint failures (#20366)

This commit is contained in:
Andy
2017-10-06 13:59:04 -07:00
committed by GitHub
parent ab22ef85ba
commit 6e1ad980e8
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
import { Hyperscript } from "mithril";
import { Hyperscript } from ".";
declare const h: Hyperscript;
export = h;
+1 -1
View File
@@ -1,3 +1,3 @@
import { mount as _mount } from "mithril";
import { mount as _mount } from ".";
declare const mount: typeof _mount;
export = mount;
+1 -1
View File
@@ -1,4 +1,4 @@
import { redraw, render } from "mithril";
import { redraw, render } from ".";
declare namespace RedrawService {
interface Static {
+1 -1
View File
@@ -1,4 +1,4 @@
import { render } from "mithril";
import { render } from ".";
declare namespace RenderService {
interface Static {
+1 -1
View File
@@ -1,4 +1,4 @@
import { request, jsonp } from "mithril";
import { request, jsonp } from ".";
declare namespace RequestService {
interface Static {
+1 -1
View File
@@ -1,3 +1,3 @@
import { Route } from "mithril";
import { Route } from ".";
declare const route: Route;
export = route;
+1 -1
View File
@@ -1,3 +1,3 @@
import { withAttr as _withAttr } from "mithril";
import { withAttr as _withAttr } from ".";
declare const withAttr: typeof _withAttr;
export = withAttr;