Skip to content

Commit

Permalink
fix(kubernetes): fixed typing (#4504)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinawoo authored and Justin Reynolds committed Nov 21, 2017
1 parent a3b638e commit 8a5afd9
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,11 +1,11 @@
import { IQService, module } from 'angular';
import { IPromise, IQService, module } from 'angular';

export class KubernetesV2ServerGroupTransformer {
constructor(private $q: IQService) {
'ngInject';
}

public normalizeServerGroup(serverGroup: any) {
public normalizeServerGroup(serverGroup: any): IPromise<any> {
return this.$q.when(serverGroup);
}
}
Expand Down

0 comments on commit 8a5afd9

Please sign in to comment.