Removed unused interface

This commit is contained in:
staticfunction
2014-04-19 07:34:37 +08:00
parent 0e0e9511a8
commit b5f170afda
-4
View File
@@ -18,10 +18,6 @@ declare module 'passport-facebook' {
profileUrl:string;
}
interface User<T> {
}
class Strategy implements passport.Strategy{
constructor(options:{clientID:string; clientSecret:string; callbackURL:string},
verify:(accessToken:string, refreshToken:string, profile:Profile, done:(error:any, user?:any) => void) => void);