@@ -14,19 +14,19 @@ export interface PreferencesState
1414export type PreferencesAction =
1515 | { type : typeof ActionTypes . OPEN_PREFERENCES }
1616 | { type : typeof ActionTypes . SET_PREFERENCES_TAB ; value : PreferencesState [ 'tabIndex' ] }
17- | { type : typeof ActionTypes . SET_FONT_SIZE ; value : Preferences [ 'fontSize' ] }
18- | { type : typeof ActionTypes . SET_AUTOSAVE ; value : Preferences [ 'autosave' ] }
19- | { type : typeof ActionTypes . SET_LINEWRAP ; value : Preferences [ 'linewrap' ] }
20- | { type : typeof ActionTypes . SET_LINT_WARNING ; value : Preferences [ 'lintWarning' ] }
21- | { type : typeof ActionTypes . SET_TEXT_OUTPUT ; value : Preferences [ 'textOutput' ] }
22- | { type : typeof ActionTypes . SET_GRID_OUTPUT ; value : Preferences [ 'gridOutput' ] }
17+ | { type : typeof ActionTypes . SET_FONT_SIZE ; value : PreferencesState [ 'fontSize' ] }
18+ | { type : typeof ActionTypes . SET_AUTOSAVE ; value : PreferencesState [ 'autosave' ] }
19+ | { type : typeof ActionTypes . SET_LINEWRAP ; value : PreferencesState [ 'linewrap' ] }
20+ | { type : typeof ActionTypes . SET_LINT_WARNING ; value : PreferencesState [ 'lintWarning' ] }
21+ | { type : typeof ActionTypes . SET_TEXT_OUTPUT ; value : PreferencesState [ 'textOutput' ] }
22+ | { type : typeof ActionTypes . SET_GRID_OUTPUT ; value : PreferencesState [ 'gridOutput' ] }
2323 | { type : typeof ActionTypes . SET_PREFERENCES ; preferences : PreferencesState }
24- | { type : typeof ActionTypes . SET_THEME ; value : Preferences [ 'theme' ] }
25- | { type : typeof ActionTypes . SET_AUTOREFRESH ; value : Preferences [ 'autorefresh' ] }
26- | { type : typeof ActionTypes . SET_LINE_NUMBERS ; value : Preferences [ 'lineNumbers' ] }
27- | { type : typeof ActionTypes . SET_LANGUAGE ; language : Preferences [ 'language' ] }
28- | { type : typeof ActionTypes . SET_AUTOCLOSE_BRACKETS_QUOTES ; value : Preferences [ 'autocloseBracketsQuotes' ] }
29- | { type : typeof ActionTypes . SET_AUTOCOMPLETE_HINTER ; value : Preferences [ 'autocompleteHinter' ] } ;
24+ | { type : typeof ActionTypes . SET_THEME ; value : PreferencesState [ 'theme' ] }
25+ | { type : typeof ActionTypes . SET_AUTOREFRESH ; value : PreferencesState [ 'autorefresh' ] }
26+ | { type : typeof ActionTypes . SET_LINE_NUMBERS ; value : PreferencesState [ 'lineNumbers' ] }
27+ | { type : typeof ActionTypes . SET_LANGUAGE ; language : PreferencesState [ 'language' ] }
28+ | { type : typeof ActionTypes . SET_AUTOCLOSE_BRACKETS_QUOTES ; value : PreferencesState [ 'autocloseBracketsQuotes' ] }
29+ | { type : typeof ActionTypes . SET_AUTOCOMPLETE_HINTER ; value : PreferencesState [ 'autocompleteHinter' ] } ;
3030
3131export const initialState : PreferencesState = {
3232 tabIndex : 0 ,
0 commit comments