mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 15:00:26 +00:00
mithril: Fix no-self-import lint failures (#20366)
This commit is contained in:
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
import { Hyperscript } from "mithril";
|
||||
import { Hyperscript } from ".";
|
||||
declare const h: Hyperscript;
|
||||
export = h;
|
||||
|
||||
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
import { mount as _mount } from "mithril";
|
||||
import { mount as _mount } from ".";
|
||||
declare const mount: typeof _mount;
|
||||
export = mount;
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
import { redraw, render } from "mithril";
|
||||
import { redraw, render } from ".";
|
||||
|
||||
declare namespace RedrawService {
|
||||
interface Static {
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
import { render } from "mithril";
|
||||
import { render } from ".";
|
||||
|
||||
declare namespace RenderService {
|
||||
interface Static {
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
import { request, jsonp } from "mithril";
|
||||
import { request, jsonp } from ".";
|
||||
|
||||
declare namespace RequestService {
|
||||
interface Static {
|
||||
|
||||
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
import { Route } from "mithril";
|
||||
import { Route } from ".";
|
||||
declare const route: Route;
|
||||
export = route;
|
||||
|
||||
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
||||
import { withAttr as _withAttr } from "mithril";
|
||||
import { withAttr as _withAttr } from ".";
|
||||
declare const withAttr: typeof _withAttr;
|
||||
export = withAttr;
|
||||
|
||||
Reference in New Issue
Block a user