UNPKG

@hz-9/a5-authn

Version:

Authentication module for the @hz-9/a5-* series of repositories.

14 lines (13 loc) 343 B
export interface A5AuthnPwdStrategyConstructorOptions { /** * 用户名字段名称 * @default 'username' */ usernameField?: string; /** * 密码字段名称 * @default 'password' */ passwordField?: string; } export type A5AuthnPwdStrategyOptions = Required<A5AuthnPwdStrategyConstructorOptions>;