UNPKG

@ssktechnologies/awsforge

Version:

Enterprise-grade AWS Cognito authentication toolkit for seamless user management, registration, login, and password recovery with JWT token handling

15 lines (14 loc) 430 B
export interface CognitoConfig { clientId: string; clientSecret?: string; userPoolId: string; region: string; allowedCustomAttributes?: string[]; validateCustomAttributes?: boolean; } export declare class PackageConfig { readonly cognito: CognitoConfig; readonly allowedCustomAttributes: string[]; readonly validateCustomAttributes: boolean; constructor(config?: Partial<CognitoConfig>); }