2020-08-20 16:18:16 +02:00
|
|
|
export interface RegisterClientFormFieldOptions {
|
|
|
|
name: string
|
|
|
|
label: string
|
2020-11-27 20:51:25 +01:00
|
|
|
type: 'input' | 'input-checkbox' | 'input-password' | 'input-textarea' | 'markdown-text' | 'markdown-enhanced'
|
2020-08-20 16:18:16 +02:00
|
|
|
|
2020-08-21 14:45:57 +02:00
|
|
|
descriptionHTML?: string
|
|
|
|
|
2020-08-20 16:18:16 +02:00
|
|
|
// Default setting value
|
|
|
|
default?: string | boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RegisterClientVideoFieldOptions {
|
|
|
|
type: 'import-url' | 'import-torrent' | 'update' | 'upload'
|
|
|
|
}
|