1f20622f2b
* Add ability to set the user display name * Use display name to guess the username/channel name * Add explanations about what is the purpose of a username/channel name * Add a loader at the "done" step
12 lines
172 B
TypeScript
12 lines
172 B
TypeScript
export interface UserRegister {
|
|
username: string
|
|
password: string
|
|
email: string
|
|
|
|
displayName?: string
|
|
|
|
channel?: {
|
|
name: string
|
|
displayName: string
|
|
}
|
|
}
|