old-automod/lib/types/PendingLogin.ts

13 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;