export interface LoginAttempt { /** * @minLength 1 */ username: string, /** * @minLength 1 */ password: string, rememberMe?: boolean }