Fix feathersjs dependers (#24091)

This commit is contained in:
Andy
2018-03-05 16:19:20 -08:00
committed by Mohamed Hegazy
parent b0a6ea017e
commit 311bfefd68
9 changed files with 13 additions and 9 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
// Project: http://feathersjs.com/
// Definitions by: Jan Lohage <https://github.com/j2L4e>
// Definitions: https://github.com/feathersjs-ecosystem/feathers-typescript
// TypeScript Version: 2.2
// TypeScript Version: 2.3
import { Application } from '@feathersjs/feathers';
import { Request } from 'express';
@@ -45,7 +45,7 @@ export interface FeathersAuthenticationJWTOptions {
}
export class JWTVerifier {
constructor(app: Application<any>, options: any); // the class constructor
constructor(app: Application, options: any); // the class constructor
verify(req: Request, payload: any, done: (error: any, user?: any, info?: any) => void): void;
}