@feathersjs/authentication
Version:
Add Authentication to your FeathersJS app.
16 lines (15 loc) • 466 B
TypeScript
import { FromSchema, authenticationSettingsSchema } from '@feathersjs/schema';
export declare const defaultOptions: {
authStrategies: string[];
jwtOptions: {
header: {
typ: string;
};
audience: string;
issuer: string;
algorithm: string;
expiresIn: string;
};
};
export { authenticationSettingsSchema };
export type AuthenticationConfiguration = FromSchema<typeof authenticationSettingsSchema>;