Merge pull request #6989 from DCollart/master

Allow "tokenGetter" function to use many parameters
This commit is contained in:
Masahiro Wakame
2015-12-01 23:45:22 +09:00
+1 -1
View File
@@ -25,6 +25,6 @@ declare module angular.jwt {
}
interface IJwtInterceptor {
tokenGetter(): string;
tokenGetter(...params : any[]): string;
}
}