web: basic settings page needed for testing

typescript cries about types but i don't care at this point
This commit is contained in:
wukko
2024-06-20 18:05:17 +06:00
parent f2e74b681b
commit b9e7661b6d
5 changed files with 89 additions and 11 deletions

View File

@@ -31,5 +31,16 @@ const defaultSettings: CobaltSettings = {
trafficAnalytics: true
}
}
export default defaultSettings;
export const settingArrays = {
appearance: {
theme: ["auto", "light", "dark"]
},
save: {
audioFormat: ["best", "mp3", "ogg", "wav", "opus"],
filenameStyle: ["classic", "basic", "pretty", "nerdy"],
videoQuality: ["max", "2160", "1440", "1080", "720", "480", "360", "240", "144"],
youtubeVideoCodec: ["h264", "av1", "vp9"],
},
}