UNPKG

otp-code-component

Version:

Google Authenticator 验证组件

20 lines (19 loc) 364 B
export type AuthType = 'google' | 'phone'; export interface QRCodeResponse { code: number; message: string; data: { qr_img: string; }; } export interface AuthSuccessResponse { code: number; message: string; data: { is_pass: boolean; }; } export interface AuthErrorResponse { code: number; message: string; }