Skip to content

Fix for issue 1876: noImplicitAny means make them explicite #1892

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 31, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions addon/ng2/commands/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ const InitCommand: any = Command.extend({

// needs an explicit check in case it's just 'undefined'
// due to passing of options from 'new' and 'addon'
let gitInit;
let gitInit: any;
if (commandOptions.skipGit === false) {
gitInit = new GitInit({
ui: this.ui,
project: this.project
});
}

let linkCli;
let linkCli: any;
if (commandOptions.linkCli) {
linkCli = new LinkCli({
ui: this.ui,
Expand All @@ -72,7 +72,7 @@ const InitCommand: any = Command.extend({
});
}

let npmInstall;
let npmInstall: any;
if (!commandOptions.skipNpm) {
npmInstall = new NpmInstall({
ui: this.ui,
Expand All @@ -81,7 +81,7 @@ const InitCommand: any = Command.extend({
});
}

let bowerInstall;
let bowerInstall: any;
if (!commandOptions.skipBower) {
bowerInstall = new this.tasks.BowerInstall({
ui: this.ui,
Expand Down