Add any to allow us to cast a ModuleBlock to a Block

This commit is contained in:
Andy Hanson
2016-10-07 08:17:00 -07:00
parent 9c0d6b2175
commit 731ce345b3

View File

@@ -126,7 +126,7 @@ class PreferConstWalker extends Lint.RuleWalker {
visitModuleDeclaration(node: ts.ModuleDeclaration) {
if (node.body.kind === ts.SyntaxKind.ModuleBlock) {
// For some reason module blocks are left out of the visit block traversal
this.visitBlock(node.body as ts.ModuleBlock);
this.visitBlock(node.body as any as ts.Block);
}
super.visitModuleDeclaration(node);
}