UNPKG

466 BTypeScriptView Raw
1import { FromSchema, authenticationSettingsSchema } from '@feathersjs/schema';
2export declare const defaultOptions: {
3 authStrategies: string[];
4 jwtOptions: {
5 header: {
6 typ: string;
7 };
8 audience: string;
9 issuer: string;
10 algorithm: string;
11 expiresIn: string;
12 };
13};
14export { authenticationSettingsSchema };
15export type AuthenticationConfiguration = FromSchema<typeof authenticationSettingsSchema>;