mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 09:19:16 +08:00
33 lines
735 B
Go
33 lines
735 B
Go
|
export namespace Login {
|
||
|
export interface ReqLoginForm {
|
||
|
name: string;
|
||
|
password: string;
|
||
|
captcha: string;
|
||
|
captchaID: string;
|
||
|
authMethod: string;
|
||
|
}
|
||
|
export interface MFALoginForm {
|
||
|
name: string;
|
||
|
password: string;
|
||
|
code: string;
|
||
|
authMethod: string;
|
||
|
}
|
||
|
export interface ResLogin {
|
||
|
name: string;
|
||
|
token: string;
|
||
|
mfaStatus: string;
|
||
|
}
|
||
|
export interface InitUser {
|
||
|
name: string;
|
||
|
password: string;
|
||
|
}
|
||
|
export interface ResCaptcha {
|
||
|
imagePath: string;
|
||
|
captchaID: string;
|
||
|
captchaLength: number;
|
||
|
}
|
||
|
export interface ResAuthButtons {
|
||
|
[propName: string]: any;
|
||
|
}
|
||
|
}
|