style(linting): fix validate issues

fix validate issues
This commit is contained in:
Dan Bucholtz
2017-03-03 16:45:57 -06:00
parent ced9bd2bb8
commit 8674aaf419

View File

@@ -101,9 +101,9 @@ export function isNav(nav: any): boolean {
return !!nav && !!nav.push;
}
export function DeepLink(config: DeepLinkMetadataType) {
return function(cls: any) {
return cls;
export function DeepLink(config?: DeepLinkMetadataType): ClassDecorator {
return function(clazz: any) {
return clazz;
};
}