export type RegisterDto = { /** * The user's username */ username: string; /** * The user's e-mail */ email: string; /** * The password to create and/or login to an account */ password: string; };