@feathersjs/authentication
Version:
Add Authentication to your FeathersJS app.
17 lines (14 loc) • 397 B
text/typescript
import * as hooks from './hooks';
const { authenticate } = hooks;
export { hooks };
export { authenticate };
export {
AuthenticationBase,
AuthenticationRequest,
AuthenticationResult,
AuthenticationStrategy,
ConnectionEvent
} from './core';
export { AuthenticationBaseStrategy } from './strategy';
export { AuthenticationService } from './service';
export { JWTStrategy } from './jwt';