7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
export interface SignInWithRecoveryCodesDTO {
|
|
recoveryCodes: string
|
|
username: string
|
|
password: string
|
|
hvmToken?: string
|
|
}
|