Fix 2 previously-missed lints

This commit is contained in:
Nathan Shively-Sanders
2019-03-14 10:34:54 -07:00
parent 813999bd2b
commit c2b879aaf6
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -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(
+6 -6
View File
@@ -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");
});
});
}