mirror of https://github.com/Chocobozzz/PeerTube
13 lines
172 B
TypeScript
13 lines
172 B
TypeScript
|
export interface UserRegister {
|
||
|
username: string
|
||
|
password: string
|
||
|
email: string
|
||
|
|
||
|
displayName?: string
|
||
|
|
||
|
channel?: {
|
||
|
name: string
|
||
|
displayName: string
|
||
|
}
|
||
|
}
|