mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Fix 2 previously-missed lints
This commit is contained in:
Vendored
+1
-1
@@ -7,7 +7,7 @@
|
||||
import { ActionCreator, Action, Dispatch } from "redux";
|
||||
import Mousetrap = require('mousetrap');
|
||||
|
||||
export {Mousetrap};
|
||||
export { Mousetrap };
|
||||
export const mousetrap: MousetrapInstance;
|
||||
|
||||
export function bindShortcut(
|
||||
|
||||
@@ -5,12 +5,12 @@ import View = SpacePen.View;
|
||||
|
||||
class Spacecraft extends View {
|
||||
static content() {
|
||||
this.div(()=> {
|
||||
this.h1("Spacecraft");
|
||||
this.ol(()=> {
|
||||
this.li("Apollo");
|
||||
this.li("Soyuz");
|
||||
this.li("Space Shuttle");
|
||||
Spacecraft.div(()=> {
|
||||
Spacecraft.h1("Spacecraft");
|
||||
Spacecraft.ol(()=> {
|
||||
Spacecraft.li("Apollo");
|
||||
Spacecraft.li("Soyuz");
|
||||
Spacecraft.li("Space Shuttle");
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user