Allow "tokenGetter" function to use many parameters (useful to load service/provider/factory)

This commit is contained in:
Dominic Collart
2015-11-30 11:13:09 +01:00
parent fb2b3b1e06
commit e986301426
+1 -1
View File
@@ -25,6 +25,6 @@ declare module angular.jwt {
}
interface IJwtInterceptor {
tokenGetter(): string;
tokenGetter(...params : any[]): string;
}
}