Settings
interface Settings
import { ColorSchemeOption } from './color-scheme-option.interface';
import { LanguageOption } from './language-option.interface';
export interface Settings {
colorSchemeOption: ColorSchemeOption;
languageOption: LanguageOption;
}
Last updated
Was this helpful?