mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 14:19:38 +00:00
Interface conversion, search bar layout
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import { Difficulty, Instrument } from 'scan-chart'
|
||||
|
||||
export const themes = [
|
||||
'business',
|
||||
'dark',
|
||||
@@ -21,6 +23,8 @@ export interface Settings {
|
||||
downloadVideos: boolean // If background videos should be downloaded
|
||||
theme: typeof themes[number] // The name of the currently enabled UI theme
|
||||
libraryPath: string | undefined // The path to the user's library
|
||||
instrument: Instrument | null // The instrument selected by default, or `null` for "Any Instrument"
|
||||
difficulty: Difficulty | null // The difficulty selected by default, or `null` for "Any Difficulty"
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -31,4 +35,6 @@ export const defaultSettings: Settings = {
|
||||
downloadVideos: true,
|
||||
theme: 'dark',
|
||||
libraryPath: undefined,
|
||||
instrument: 'guitar',
|
||||
difficulty: null,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user