mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
Finalize TextEditorOptions.indentSize API proposal (#193193)
Finalize TextEditorOptions.indentSize API proposal
This commit is contained in:
@@ -165,10 +165,10 @@ export class ExtHostTextEditorOptions {
|
||||
set tabSize(value: number | string) {
|
||||
that._setTabSize(value);
|
||||
},
|
||||
get indentSize(): number | 'tabSize' {
|
||||
get indentSize(): number | string {
|
||||
return that._indentSize;
|
||||
},
|
||||
set indentSize(value: number | 'tabSize') {
|
||||
set indentSize(value: number | string) {
|
||||
that._setIndentSize(value);
|
||||
},
|
||||
get insertSpaces(): boolean | string {
|
||||
|
||||
Reference in New Issue
Block a user