You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.1 KiB
59 lines
1.1 KiB
// TS types for elements on the Config pages |
|
|
|
export interface TextFieldProps { |
|
handleResetValue?: (fieldName) => void; |
|
fieldName: string; |
|
initialValues?: any; |
|
type?: string; |
|
configPath?: string; |
|
required?: boolean; |
|
disabled?: boolean; |
|
onSubmit?: () => void; |
|
} |
|
|
|
export interface ToggleSwitchProps { |
|
fieldName: string; |
|
initialValues?: any; |
|
configPath?: string; |
|
disabled?: boolean; |
|
} |
|
|
|
export interface UpdateArgs { |
|
fieldName: string; |
|
value: string; |
|
path?: string; |
|
} |
|
|
|
export interface ApiPostArgs { |
|
apiPath: string, |
|
data: object, |
|
onSuccess?: (arg: any) => {}, |
|
onError?: (arg: any) => {}, |
|
} |
|
|
|
export interface ConfigDirectoryFields { |
|
enabled: boolean; |
|
instanceUrl: string, |
|
} |
|
|
|
export interface ConfigInstanceDetailsFields { |
|
extraPageContent: string; |
|
logo: string; |
|
name: string; |
|
nsfw: boolean; |
|
streamTitle: string; |
|
summary: string; |
|
tags: string[]; |
|
title: string; |
|
} |
|
|
|
export interface ConfigDetails { |
|
ffmpegPath: string; |
|
instanceDetails: ConfigInstanceDetailsFields; |
|
rtmpServerPort: string; |
|
s3: any; // tbd |
|
streamKey: string; |
|
webServerPort: string; |
|
yp: ConfigDirectoryFields; |
|
videoSettings: any; // tbd |
|
} |