chore(tslint): fix noImplicitAny errors

This commit is contained in:
Adam Bradley
2016-05-31 21:07:17 -05:00
parent fc819dd9c4
commit 11448dcd0c
49 changed files with 284 additions and 353 deletions

View File

@ -1,5 +1,6 @@
import {Menu} from './menu';
import {MenuType} from './menu-types';
import {Platform} from '../../platform/platform';
/**
@ -292,7 +293,7 @@ export class MenuController {
/**
* @private
*/
static create(type, menuCmp) {
static create(type: string, menuCmp: Menu, platform: Platform) {
return new menuTypes[type](menuCmp);
}