AutoMod/lib/types/PendingLogin.ts
2022-07-09 09:45:15 +02:00

12 lines
241 B
TypeScript

class PendingLogin {
user: string;
code: string;
expires: number;
nonce: string;
confirmed: boolean;
requirePhishingConfirmation: boolean;
exchanged: boolean;
invalid: boolean;
}
export default PendingLogin;