UNPKG

@hz-9/a5-authn

Version:

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

14 lines (13 loc) 338 B
export interface A5AuthnPhoneStrategyConstructorOptions { /** * 手机号字段名称 * @default 'phone' */ phoneField?: string; /** * 验证码字段名称 * @default 'code' */ codeField?: string; } export type A5AuthnPhoneStrategyOptions = Required<A5AuthnPhoneStrategyConstructorOptions>;